func fmt.Errorf
14068 uses
fmt (current package)
errors.go#L17: func Errorf(format string, a ...interface{}) error {
compress/flate
deflate.go#L606: return fmt.Errorf("flate: invalid compression level %d: want value in range [-2, 9]", level)
compress/gzip
gzip.go#L62: return nil, fmt.Errorf("gzip: invalid compression level: %d", level)
crypto/tls
auth.go#L27: return fmt.Errorf("expected an ECDSA public key, got %T", pubkey)
auth.go#L35: return fmt.Errorf("expected an Ed25519 public key, got %T", pubkey)
auth.go#L43: return fmt.Errorf("expected an RSA public key, got %T", pubkey)
auth.go#L51: return fmt.Errorf("expected an RSA public key, got %T", pubkey)
auth.go#L109: return 0, 0, fmt.Errorf("unsupported signature algorithm: %v", signatureAlgorithm)
auth.go#L123: return 0, 0, fmt.Errorf("unsupported signature algorithm: %v", signatureAlgorithm)
auth.go#L142: return 0, 0, fmt.Errorf("tls: Ed25519 public keys are not supported before TLS 1.2")
auth.go#L144: return 0, 0, fmt.Errorf("tls: unsupported public key: %T", pub)
auth.go#L256: return fmt.Errorf("tls: unsupported certificate: private key is %T, expected *%T",
auth.go#L259: return fmt.Errorf("tls: unsupported certificate: private key is *ed25519.PrivateKey, expected ed25519.PrivateKey")
auth.go#L264: return fmt.Errorf("tls: certificate private key (%T) does not implement crypto.Signer",
auth.go#L275: return fmt.Errorf("tls: unsupported certificate curve (%s)", pub.Curve.Params().Name)
auth.go#L278: return fmt.Errorf("tls: certificate RSA key size too small for supported signature algorithms")
auth.go#L281: return fmt.Errorf("tls: unsupported certificate key (%T)", pub)
auth.go#L285: return fmt.Errorf("tls: peer doesn't support the certificate custom signature algorithms")
auth.go#L288: return fmt.Errorf("tls: internal error: unsupported key (%T)", cert.PrivateKey)
common.go#L1113: return fmt.Errorf("failed to parse certificate: %w", err)
common.go#L1116: return fmt.Errorf("certificate is not valid for requested server name: %w", err)
common.go#L1262: return fmt.Errorf("failed to parse certificate #%d in the chain: %w", j, err)
common.go#L1448: return fmt.Errorf("tls: received unexpected handshake message of type %T when waiting for %T", got, wanted)
conn.go#L1019: return nil, c.in.setErrorLocked(fmt.Errorf("tls: handshake message of length %d bytes exceeds maximum of %d bytes", n, maxHandshake))
conn.go#L1226: return fmt.Errorf("tls: received unexpected handshake message of type %T", msg)
conn.go#L1333: alertErr = fmt.Errorf("tls: failed to send closeNotify alert (but connection was closed anyway): %w", err)
handshake_client.go#L368: return fmt.Errorf("tls: server selected unsupported protocol version %x", peerVersion)
handshake_client.go#L602: return fmt.Errorf("tls: client certificate private key of type %T does not implement crypto.Signer", chainToSend.PrivateKey)
handshake_client.go#L880: return fmt.Errorf("tls: server's certificate contains an unsupported type of public key: %T", certs[0].PublicKey)
handshake_messages.go#L27: return fmt.Errorf("invalid value length: expected %d, got %d", n, len(v))
handshake_server.go#L162: return nil, fmt.Errorf("tls: client offered only unsupported versions: %x", clientVersions)
handshake_server.go#L262: return fmt.Errorf("tls: unsupported signing key type (%T)", priv.Public())
handshake_server.go#L271: return fmt.Errorf("tls: unsupported decryption key type (%T)", priv.Public())
handshake_server.go#L303: return "", fmt.Errorf("tls: client requested unsupported application protocols (%s)", clientProtos)
handshake_server.go#L843: return fmt.Errorf("tls: client certificate contains an unsupported public key of type %T", certs[0].PublicKey)
key_agreement.go#L201: return nil, fmt.Errorf("tls: certificate private key of type %T does not implement crypto.Signer", cert.PrivateKey)
prf.go#L259: return nil, fmt.Errorf("crypto/tls: reserved ExportKeyingMaterial label: %s", label)
prf.go#L273: return nil, fmt.Errorf("crypto/tls: ExportKeyingMaterial context too long")
tls.go#L270: return fail(fmt.Errorf("tls: failed to find \"CERTIFICATE\" PEM block in certificate input after skipping PEM blocks of the following types: %v", skippedBlockTypes))
tls.go#L284: return fail(fmt.Errorf("tls: failed to find PEM block with type ending in \"PRIVATE KEY\" in key input after skipping PEM blocks of the following types: %v", skippedBlockTypes))
crypto/x509
parser.go#L104: return "", fmt.Errorf("unsupported string type: %v", tag)
parser.go#L138: return nil, fmt.Errorf("x509: invalid RDNSequence: invalid attribute value: %s", err)
parser.go#L408: return fmt.Errorf("x509: cannot parse URI %q: %s", uriStr, err)
parser.go#L412: return fmt.Errorf("x509: cannot parse URI %q: invalid domain", uriStr)
parser.go#L537: return nil, nil, nil, nil, fmt.Errorf("x509: invalid NameConstraints extension")
parser.go#L563: return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse dnsName constraint %q", domain)
parser.go#L581: return nil, nil, nil, nil, fmt.Errorf("x509: IP constraint contained value of length %d", l)
parser.go#L585: return nil, nil, nil, nil, fmt.Errorf("x509: IP constraint contained invalid mask %x", mask)
parser.go#L600: return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
parser.go#L609: return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
parser.go#L621: return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse URI constraint %q: cannot be IP address", domain)
parser.go#L633: return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse URI constraint %q", domain)
pkcs8.go#L70: return nil, fmt.Errorf("x509: invalid Ed25519 private key: %v", err)
pkcs8.go#L73: return nil, fmt.Errorf("x509: invalid Ed25519 private key length: %d", l)
pkcs8.go#L78: return nil, fmt.Errorf("x509: PKCS#8 wrapping contained private key with unknown algorithm: %v", privKey.Algo.Algorithm)
pkcs8.go#L127: return nil, fmt.Errorf("x509: failed to marshal private key: %v", err)
pkcs8.go#L132: return nil, fmt.Errorf("x509: unknown key type while marshaling PKCS#8: %T", key)
sec1.go#L80: return nil, fmt.Errorf("x509: unknown EC private key version %d", privKey.Version)
verify.go#L398: return false, fmt.Errorf("x509: internal error: cannot parse constraint %q", constraint)
verify.go#L419: return false, fmt.Errorf("URI with empty host (%q) cannot be matched against constraints", uri.String())
verify.go#L432: return false, fmt.Errorf("URI with IP (%q) cannot be matched against constraints", uri.String())
verify.go#L461: return false, fmt.Errorf("x509: internal error: cannot parse domain %q", domain)
verify.go#L477: return false, fmt.Errorf("x509: internal error: cannot parse domain %q", constraint)
verify.go#L608: return fmt.Errorf("x509: cannot parse rfc822Name %q", mailbox)
verify.go#L621: return fmt.Errorf("x509: cannot parse dnsName %q", name)
verify.go#L635: return fmt.Errorf("x509: internal error: URI SAN %q failed to parse", name)
verify.go#L648: return fmt.Errorf("x509: internal error: IP SAN %x failed to parse", data)
verify.go#L737: return nil, fmt.Errorf("crypto/x509: error fetching intermediate: %w", err)
x509.go#L102: return nil, pkix.AlgorithmIdentifier{}, fmt.Errorf("x509: unsupported public key type: %T", pub)
x509.go#L805: return fmt.Errorf("x509: signature algorithm specifies an %s public key, but have public key of type %T", expectedPubKeyAlgo.String(), pubKey)
x509.go#L1010: return fmt.Errorf("x509: %q cannot be encoded as an IA5String", s)
x509.go#L1586: return nil, fmt.Errorf("x509: signature over certificate returned by signer is invalid: %w", err)
encoding/asn1
asn1.go#L353: err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
asn1.go#L376: err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
marshal.go#L581: return nil, fmt.Errorf("asn1: cannot marshal nil value")
encoding/json
decode.go#L728: d.saveError(fmt.Errorf("json: cannot set embedded pointer to unexported struct: %v", subv.Type().Elem()))
decode.go#L747: d.saveError(fmt.Errorf("json: unknown field %q", key))
decode.go#L771: d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal unquoted value into %v", subv.Type()))
decode.go#L865: d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
decode.go#L876: d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
decode.go#L892: return fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())
decode.go#L906: d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
decode.go#L919: d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
decode.go#L925: d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
decode.go#L943: return fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())
decode.go#L964: return fmt.Errorf("json: invalid number literal, trying to unmarshal %q into Number", item)
decode.go#L978: return fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())
decode.go#L992: return fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())
encode.go#L628: e.error(fmt.Errorf("json: invalid number literal %q", numStr))
encode.go#L803: e.error(fmt.Errorf("json: encoding error for type %q: %q", v.Type().String(), err.Error()))
flag
flag.go#L433: return fmt.Errorf("no such flag -%v", name)
github.com/gotd/td/internal/crypto
encrypted_message_data.go#L51: return fmt.Errorf("encode inner message: %w", err)
public_keys.go#L22: return nil, fmt.Errorf("failed to parse RSA from PEM: %w", err)
public_keys.go#L44: return nil, fmt.Errorf("parsed unexpected key type %T", k)
rsa.go#L53: return nil, fmt.Errorf("data length %d is too big", len(data))
github.com/gotd/td/internal/mt
tl_bad_msg_notification_gen.go#L124: return fmt.Errorf("can't encode bad_msg_notification#a7eff811 as nil")
tl_bad_msg_notification_gen.go#L133: return fmt.Errorf("can't encode bad_msg_notification#a7eff811 as nil")
tl_bad_msg_notification_gen.go#L159: return fmt.Errorf("can't decode bad_msg_notification#a7eff811 to nil")
tl_bad_msg_notification_gen.go#L162: return fmt.Errorf("unable to decode bad_msg_notification#a7eff811: %w", err)
tl_bad_msg_notification_gen.go#L170: return fmt.Errorf("can't decode bad_msg_notification#a7eff811 to nil")
tl_bad_msg_notification_gen.go#L175: return fmt.Errorf("unable to decode bad_msg_notification#a7eff811: field bad_msg_id: %w", err)
tl_bad_msg_notification_gen.go#L182: return fmt.Errorf("unable to decode bad_msg_notification#a7eff811: field bad_msg_seqno: %w", err)
tl_bad_msg_notification_gen.go#L189: return fmt.Errorf("unable to decode bad_msg_notification#a7eff811: field error_code: %w", err)
tl_bad_msg_notification_gen.go#L312: return fmt.Errorf("can't encode bad_server_salt#edab447b as nil")
tl_bad_msg_notification_gen.go#L321: return fmt.Errorf("can't encode bad_server_salt#edab447b as nil")
tl_bad_msg_notification_gen.go#L353: return fmt.Errorf("can't decode bad_server_salt#edab447b to nil")
tl_bad_msg_notification_gen.go#L356: return fmt.Errorf("unable to decode bad_server_salt#edab447b: %w", err)
tl_bad_msg_notification_gen.go#L364: return fmt.Errorf("can't decode bad_server_salt#edab447b to nil")
tl_bad_msg_notification_gen.go#L369: return fmt.Errorf("unable to decode bad_server_salt#edab447b: field bad_msg_id: %w", err)
tl_bad_msg_notification_gen.go#L376: return fmt.Errorf("unable to decode bad_server_salt#edab447b: field bad_msg_seqno: %w", err)
tl_bad_msg_notification_gen.go#L383: return fmt.Errorf("unable to decode bad_server_salt#edab447b: field error_code: %w", err)
tl_bad_msg_notification_gen.go#L390: return fmt.Errorf("unable to decode bad_server_salt#edab447b: field new_server_salt: %w", err)
tl_bad_msg_notification_gen.go#L461: return nil, fmt.Errorf("unable to decode BadMsgNotificationClass: %w", err)
tl_bad_msg_notification_gen.go#L468: return nil, fmt.Errorf("unable to decode BadMsgNotificationClass: %w", err)
tl_bad_msg_notification_gen.go#L472: return nil, fmt.Errorf("unable to decode BadMsgNotificationClass: %w", bin.NewUnexpectedID(id))
tl_bad_msg_notification_gen.go#L484: return fmt.Errorf("unable to decode BadMsgNotificationBox to nil")
tl_bad_msg_notification_gen.go#L488: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_bad_msg_notification_gen.go#L497: return fmt.Errorf("unable to encode BadMsgNotificationClass as nil")
tl_client_d_h_inner_data_gen.go#L135: return fmt.Errorf("can't encode client_DH_inner_data#6643b654 as nil")
tl_client_d_h_inner_data_gen.go#L144: return fmt.Errorf("can't encode client_DH_inner_data#6643b654 as nil")
tl_client_d_h_inner_data_gen.go#L176: return fmt.Errorf("can't decode client_DH_inner_data#6643b654 to nil")
tl_client_d_h_inner_data_gen.go#L179: return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: %w", err)
tl_client_d_h_inner_data_gen.go#L187: return fmt.Errorf("can't decode client_DH_inner_data#6643b654 to nil")
tl_client_d_h_inner_data_gen.go#L192: return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: field nonce: %w", err)
tl_client_d_h_inner_data_gen.go#L199: return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: field server_nonce: %w", err)
tl_client_d_h_inner_data_gen.go#L206: return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: field retry_id: %w", err)
tl_client_d_h_inner_data_gen.go#L213: return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: field g_b: %w", err)
tl_destroy_session_gen.go#L102: return fmt.Errorf("can't encode destroy_session#e7512126 as nil")
tl_destroy_session_gen.go#L111: return fmt.Errorf("can't encode destroy_session#e7512126 as nil")
tl_destroy_session_gen.go#L125: return fmt.Errorf("can't decode destroy_session#e7512126 to nil")
tl_destroy_session_gen.go#L128: return fmt.Errorf("unable to decode destroy_session#e7512126: %w", err)
tl_destroy_session_gen.go#L136: return fmt.Errorf("can't decode destroy_session#e7512126 to nil")
tl_destroy_session_gen.go#L141: return fmt.Errorf("unable to decode destroy_session#e7512126: field session_id: %w", err)
tl_destroy_session_res_gen.go#L102: return fmt.Errorf("can't encode destroy_session_ok#e22045fc as nil")
tl_destroy_session_res_gen.go#L111: return fmt.Errorf("can't encode destroy_session_ok#e22045fc as nil")
tl_destroy_session_res_gen.go#L125: return fmt.Errorf("can't decode destroy_session_ok#e22045fc to nil")
tl_destroy_session_res_gen.go#L128: return fmt.Errorf("unable to decode destroy_session_ok#e22045fc: %w", err)
tl_destroy_session_res_gen.go#L136: return fmt.Errorf("can't decode destroy_session_ok#e22045fc to nil")
tl_destroy_session_res_gen.go#L141: return fmt.Errorf("unable to decode destroy_session_ok#e22045fc: field session_id: %w", err)
tl_destroy_session_res_gen.go#L231: return fmt.Errorf("can't encode destroy_session_none#62d350c9 as nil")
tl_destroy_session_res_gen.go#L240: return fmt.Errorf("can't encode destroy_session_none#62d350c9 as nil")
tl_destroy_session_res_gen.go#L254: return fmt.Errorf("can't decode destroy_session_none#62d350c9 to nil")
tl_destroy_session_res_gen.go#L257: return fmt.Errorf("unable to decode destroy_session_none#62d350c9: %w", err)
tl_destroy_session_res_gen.go#L265: return fmt.Errorf("can't decode destroy_session_none#62d350c9 to nil")
tl_destroy_session_res_gen.go#L270: return fmt.Errorf("unable to decode destroy_session_none#62d350c9: field session_id: %w", err)
tl_destroy_session_res_gen.go#L335: return nil, fmt.Errorf("unable to decode DestroySessionResClass: %w", err)
tl_destroy_session_res_gen.go#L342: return nil, fmt.Errorf("unable to decode DestroySessionResClass: %w", err)
tl_destroy_session_res_gen.go#L346: return nil, fmt.Errorf("unable to decode DestroySessionResClass: %w", bin.NewUnexpectedID(id))
tl_destroy_session_res_gen.go#L358: return fmt.Errorf("unable to decode DestroySessionResBox to nil")
tl_destroy_session_res_gen.go#L362: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_destroy_session_res_gen.go#L371: return fmt.Errorf("unable to encode DestroySessionResClass as nil")
tl_future_salt_gen.go#L124: return fmt.Errorf("can't encode future_salt#949d9dc as nil")
tl_future_salt_gen.go#L133: return fmt.Errorf("can't encode future_salt#949d9dc as nil")
tl_future_salt_gen.go#L159: return fmt.Errorf("can't decode future_salt#949d9dc to nil")
tl_future_salt_gen.go#L162: return fmt.Errorf("unable to decode future_salt#949d9dc: %w", err)
tl_future_salt_gen.go#L170: return fmt.Errorf("can't decode future_salt#949d9dc to nil")
tl_future_salt_gen.go#L175: return fmt.Errorf("unable to decode future_salt#949d9dc: field valid_since: %w", err)
tl_future_salt_gen.go#L182: return fmt.Errorf("unable to decode future_salt#949d9dc: field valid_until: %w", err)
tl_future_salt_gen.go#L189: return fmt.Errorf("unable to decode future_salt#949d9dc: field salt: %w", err)
tl_future_salts_gen.go#L124: return fmt.Errorf("can't encode future_salts#ae500895 as nil")
tl_future_salts_gen.go#L133: return fmt.Errorf("can't encode future_salts#ae500895 as nil")
tl_future_salts_gen.go#L140: return fmt.Errorf("unable to encode bare future_salts#ae500895: field salts element with index %d: %w", idx, err)
tl_future_salts_gen.go#L164: return fmt.Errorf("can't decode future_salts#ae500895 to nil")
tl_future_salts_gen.go#L167: return fmt.Errorf("unable to decode future_salts#ae500895: %w", err)
tl_future_salts_gen.go#L175: return fmt.Errorf("can't decode future_salts#ae500895 to nil")
tl_future_salts_gen.go#L180: return fmt.Errorf("unable to decode future_salts#ae500895: field req_msg_id: %w", err)
tl_future_salts_gen.go#L187: return fmt.Errorf("unable to decode future_salts#ae500895: field now: %w", err)
tl_future_salts_gen.go#L194: return fmt.Errorf("unable to decode future_salts#ae500895: field salts: %w", err)
tl_future_salts_gen.go#L199: return fmt.Errorf("unable to decode bare future_salts#ae500895: field salts: %w", err)
tl_get_future_salts_gen.go#L102: return fmt.Errorf("can't encode get_future_salts#b921bd04 as nil")
tl_get_future_salts_gen.go#L111: return fmt.Errorf("can't encode get_future_salts#b921bd04 as nil")
tl_get_future_salts_gen.go#L125: return fmt.Errorf("can't decode get_future_salts#b921bd04 to nil")
tl_get_future_salts_gen.go#L128: return fmt.Errorf("unable to decode get_future_salts#b921bd04: %w", err)
tl_get_future_salts_gen.go#L136: return fmt.Errorf("can't decode get_future_salts#b921bd04 to nil")
tl_get_future_salts_gen.go#L141: return fmt.Errorf("unable to decode get_future_salts#b921bd04: field num: %w", err)
tl_gzip_packed_gen.go#L102: return fmt.Errorf("can't encode gzip_packed#3072cfa1 as nil")
tl_gzip_packed_gen.go#L111: return fmt.Errorf("can't encode gzip_packed#3072cfa1 as nil")
tl_gzip_packed_gen.go#L125: return fmt.Errorf("can't decode gzip_packed#3072cfa1 to nil")
tl_gzip_packed_gen.go#L128: return fmt.Errorf("unable to decode gzip_packed#3072cfa1: %w", err)
tl_gzip_packed_gen.go#L136: return fmt.Errorf("can't decode gzip_packed#3072cfa1 to nil")
tl_gzip_packed_gen.go#L141: return fmt.Errorf("unable to decode gzip_packed#3072cfa1: field packed_data: %w", err)
tl_http_wait_gen.go#L124: return fmt.Errorf("can't encode http_wait#9299359f as nil")
tl_http_wait_gen.go#L133: return fmt.Errorf("can't encode http_wait#9299359f as nil")
tl_http_wait_gen.go#L159: return fmt.Errorf("can't decode http_wait#9299359f to nil")
tl_http_wait_gen.go#L162: return fmt.Errorf("unable to decode http_wait#9299359f: %w", err)
tl_http_wait_gen.go#L170: return fmt.Errorf("can't decode http_wait#9299359f to nil")
tl_http_wait_gen.go#L175: return fmt.Errorf("unable to decode http_wait#9299359f: field max_delay: %w", err)
tl_http_wait_gen.go#L182: return fmt.Errorf("unable to decode http_wait#9299359f: field wait_after: %w", err)
tl_http_wait_gen.go#L189: return fmt.Errorf("unable to decode http_wait#9299359f: field max_wait: %w", err)
tl_message_gen.go#L135: return fmt.Errorf("can't encode message#5bb8e511 as nil")
tl_message_gen.go#L144: return fmt.Errorf("can't encode message#5bb8e511 as nil")
tl_message_gen.go#L150: return fmt.Errorf("unable to encode message#5bb8e511: field body: %w", err)
tl_message_gen.go#L178: return fmt.Errorf("can't decode message#5bb8e511 to nil")
tl_message_gen.go#L181: return fmt.Errorf("unable to decode message#5bb8e511: %w", err)
tl_message_gen.go#L189: return fmt.Errorf("can't decode message#5bb8e511 to nil")
tl_message_gen.go#L194: return fmt.Errorf("unable to decode message#5bb8e511: field msg_id: %w", err)
tl_message_gen.go#L201: return fmt.Errorf("unable to decode message#5bb8e511: field seqno: %w", err)
tl_message_gen.go#L208: return fmt.Errorf("unable to decode message#5bb8e511: field bytes: %w", err)
tl_message_gen.go#L214: return fmt.Errorf("unable to decode message#5bb8e511: field body: %w", err)
tl_msg_container_gen.go#L102: return fmt.Errorf("can't encode msg_container#73f1f8dc as nil")
tl_msg_container_gen.go#L111: return fmt.Errorf("can't encode msg_container#73f1f8dc as nil")
tl_msg_container_gen.go#L116: return fmt.Errorf("unable to encode bare msg_container#73f1f8dc: field messages element with index %d: %w", idx, err)
tl_msg_container_gen.go#L130: return fmt.Errorf("can't decode msg_container#73f1f8dc to nil")
tl_msg_container_gen.go#L133: return fmt.Errorf("unable to decode msg_container#73f1f8dc: %w", err)
tl_msg_container_gen.go#L141: return fmt.Errorf("can't decode msg_container#73f1f8dc to nil")
tl_msg_container_gen.go#L146: return fmt.Errorf("unable to decode msg_container#73f1f8dc: field messages: %w", err)
tl_msg_container_gen.go#L151: return fmt.Errorf("unable to decode bare msg_container#73f1f8dc: field messages: %w", err)
tl_msg_copy_gen.go#L102: return fmt.Errorf("can't encode msg_copy#e06046b2 as nil")
tl_msg_copy_gen.go#L111: return fmt.Errorf("can't encode msg_copy#e06046b2 as nil")
tl_msg_copy_gen.go#L114: return fmt.Errorf("unable to encode msg_copy#e06046b2: field orig_message: %w", err)
tl_msg_copy_gen.go#L127: return fmt.Errorf("can't decode msg_copy#e06046b2 to nil")
tl_msg_copy_gen.go#L130: return fmt.Errorf("unable to decode msg_copy#e06046b2: %w", err)
tl_msg_copy_gen.go#L138: return fmt.Errorf("can't decode msg_copy#e06046b2 to nil")
tl_msg_copy_gen.go#L142: return fmt.Errorf("unable to decode msg_copy#e06046b2: field orig_message: %w", err)
tl_msg_detailed_info_gen.go#L135: return fmt.Errorf("can't encode msg_detailed_info#276d3ec6 as nil")
tl_msg_detailed_info_gen.go#L144: return fmt.Errorf("can't encode msg_detailed_info#276d3ec6 as nil")
tl_msg_detailed_info_gen.go#L176: return fmt.Errorf("can't decode msg_detailed_info#276d3ec6 to nil")
tl_msg_detailed_info_gen.go#L179: return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: %w", err)
tl_msg_detailed_info_gen.go#L187: return fmt.Errorf("can't decode msg_detailed_info#276d3ec6 to nil")
tl_msg_detailed_info_gen.go#L192: return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: field msg_id: %w", err)
tl_msg_detailed_info_gen.go#L199: return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: field answer_msg_id: %w", err)
tl_msg_detailed_info_gen.go#L206: return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: field bytes: %w", err)
tl_msg_detailed_info_gen.go#L213: return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: field status: %w", err)
tl_msg_detailed_info_gen.go#L325: return fmt.Errorf("can't encode msg_new_detailed_info#809db6df as nil")
tl_msg_detailed_info_gen.go#L334: return fmt.Errorf("can't encode msg_new_detailed_info#809db6df as nil")
tl_msg_detailed_info_gen.go#L360: return fmt.Errorf("can't decode msg_new_detailed_info#809db6df to nil")
tl_msg_detailed_info_gen.go#L363: return fmt.Errorf("unable to decode msg_new_detailed_info#809db6df: %w", err)
tl_msg_detailed_info_gen.go#L371: return fmt.Errorf("can't decode msg_new_detailed_info#809db6df to nil")
tl_msg_detailed_info_gen.go#L376: return fmt.Errorf("unable to decode msg_new_detailed_info#809db6df: field answer_msg_id: %w", err)
tl_msg_detailed_info_gen.go#L383: return fmt.Errorf("unable to decode msg_new_detailed_info#809db6df: field bytes: %w", err)
tl_msg_detailed_info_gen.go#L390: return fmt.Errorf("unable to decode msg_new_detailed_info#809db6df: field status: %w", err)
tl_msg_detailed_info_gen.go#L461: return nil, fmt.Errorf("unable to decode MsgDetailedInfoClass: %w", err)
tl_msg_detailed_info_gen.go#L468: return nil, fmt.Errorf("unable to decode MsgDetailedInfoClass: %w", err)
tl_msg_detailed_info_gen.go#L472: return nil, fmt.Errorf("unable to decode MsgDetailedInfoClass: %w", bin.NewUnexpectedID(id))
tl_msg_detailed_info_gen.go#L484: return fmt.Errorf("unable to decode MsgDetailedInfoBox to nil")
tl_msg_detailed_info_gen.go#L488: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_msg_detailed_info_gen.go#L497: return fmt.Errorf("unable to encode MsgDetailedInfoClass as nil")
tl_msg_resend_req_gen.go#L102: return fmt.Errorf("can't encode msg_resend_req#7d861a08 as nil")
tl_msg_resend_req_gen.go#L111: return fmt.Errorf("can't encode msg_resend_req#7d861a08 as nil")
tl_msg_resend_req_gen.go#L128: return fmt.Errorf("can't decode msg_resend_req#7d861a08 to nil")
tl_msg_resend_req_gen.go#L131: return fmt.Errorf("unable to decode msg_resend_req#7d861a08: %w", err)
tl_msg_resend_req_gen.go#L139: return fmt.Errorf("can't decode msg_resend_req#7d861a08 to nil")
tl_msg_resend_req_gen.go#L144: return fmt.Errorf("unable to decode msg_resend_req#7d861a08: field msg_ids: %w", err)
tl_msg_resend_req_gen.go#L149: return fmt.Errorf("unable to decode msg_resend_req#7d861a08: field msg_ids: %w", err)
tl_msgs_ack_gen.go#L102: return fmt.Errorf("can't encode msgs_ack#62d6b459 as nil")
tl_msgs_ack_gen.go#L111: return fmt.Errorf("can't encode msgs_ack#62d6b459 as nil")
tl_msgs_ack_gen.go#L128: return fmt.Errorf("can't decode msgs_ack#62d6b459 to nil")
tl_msgs_ack_gen.go#L131: return fmt.Errorf("unable to decode msgs_ack#62d6b459: %w", err)
tl_msgs_ack_gen.go#L139: return fmt.Errorf("can't decode msgs_ack#62d6b459 to nil")
tl_msgs_ack_gen.go#L144: return fmt.Errorf("unable to decode msgs_ack#62d6b459: field msg_ids: %w", err)
tl_msgs_ack_gen.go#L149: return fmt.Errorf("unable to decode msgs_ack#62d6b459: field msg_ids: %w", err)
tl_msgs_all_info_gen.go#L113: return fmt.Errorf("can't encode msgs_all_info#8cc0d131 as nil")
tl_msgs_all_info_gen.go#L122: return fmt.Errorf("can't encode msgs_all_info#8cc0d131 as nil")
tl_msgs_all_info_gen.go#L145: return fmt.Errorf("can't decode msgs_all_info#8cc0d131 to nil")
tl_msgs_all_info_gen.go#L148: return fmt.Errorf("unable to decode msgs_all_info#8cc0d131: %w", err)
tl_msgs_all_info_gen.go#L156: return fmt.Errorf("can't decode msgs_all_info#8cc0d131 to nil")
tl_msgs_all_info_gen.go#L161: return fmt.Errorf("unable to decode msgs_all_info#8cc0d131: field msg_ids: %w", err)
tl_msgs_all_info_gen.go#L166: return fmt.Errorf("unable to decode msgs_all_info#8cc0d131: field msg_ids: %w", err)
tl_msgs_all_info_gen.go#L174: return fmt.Errorf("unable to decode msgs_all_info#8cc0d131: field info: %w", err)
tl_msgs_state_info_gen.go#L113: return fmt.Errorf("can't encode msgs_state_info#4deb57d as nil")
tl_msgs_state_info_gen.go#L122: return fmt.Errorf("can't encode msgs_state_info#4deb57d as nil")
tl_msgs_state_info_gen.go#L142: return fmt.Errorf("can't decode msgs_state_info#4deb57d to nil")
tl_msgs_state_info_gen.go#L145: return fmt.Errorf("unable to decode msgs_state_info#4deb57d: %w", err)
tl_msgs_state_info_gen.go#L153: return fmt.Errorf("can't decode msgs_state_info#4deb57d to nil")
tl_msgs_state_info_gen.go#L158: return fmt.Errorf("unable to decode msgs_state_info#4deb57d: field req_msg_id: %w", err)
tl_msgs_state_info_gen.go#L165: return fmt.Errorf("unable to decode msgs_state_info#4deb57d: field info: %w", err)
tl_msgs_state_req_gen.go#L102: return fmt.Errorf("can't encode msgs_state_req#da69fb52 as nil")
tl_msgs_state_req_gen.go#L111: return fmt.Errorf("can't encode msgs_state_req#da69fb52 as nil")
tl_msgs_state_req_gen.go#L128: return fmt.Errorf("can't decode msgs_state_req#da69fb52 to nil")
tl_msgs_state_req_gen.go#L131: return fmt.Errorf("unable to decode msgs_state_req#da69fb52: %w", err)
tl_msgs_state_req_gen.go#L139: return fmt.Errorf("can't decode msgs_state_req#da69fb52 to nil")
tl_msgs_state_req_gen.go#L144: return fmt.Errorf("unable to decode msgs_state_req#da69fb52: field msg_ids: %w", err)
tl_msgs_state_req_gen.go#L149: return fmt.Errorf("unable to decode msgs_state_req#da69fb52: field msg_ids: %w", err)
tl_new_session_created_gen.go#L124: return fmt.Errorf("can't encode new_session_created#9ec20908 as nil")
tl_new_session_created_gen.go#L133: return fmt.Errorf("can't encode new_session_created#9ec20908 as nil")
tl_new_session_created_gen.go#L159: return fmt.Errorf("can't decode new_session_created#9ec20908 to nil")
tl_new_session_created_gen.go#L162: return fmt.Errorf("unable to decode new_session_created#9ec20908: %w", err)
tl_new_session_created_gen.go#L170: return fmt.Errorf("can't decode new_session_created#9ec20908 to nil")
tl_new_session_created_gen.go#L175: return fmt.Errorf("unable to decode new_session_created#9ec20908: field first_msg_id: %w", err)
tl_new_session_created_gen.go#L182: return fmt.Errorf("unable to decode new_session_created#9ec20908: field unique_id: %w", err)
tl_new_session_created_gen.go#L189: return fmt.Errorf("unable to decode new_session_created#9ec20908: field server_salt: %w", err)
tl_p_q_inner_data_gen.go#L157: return fmt.Errorf("can't encode p_q_inner_data#83c95aec as nil")
tl_p_q_inner_data_gen.go#L166: return fmt.Errorf("can't encode p_q_inner_data#83c95aec as nil")
tl_p_q_inner_data_gen.go#L210: return fmt.Errorf("can't decode p_q_inner_data#83c95aec to nil")
tl_p_q_inner_data_gen.go#L213: return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: %w", err)
tl_p_q_inner_data_gen.go#L221: return fmt.Errorf("can't decode p_q_inner_data#83c95aec to nil")
tl_p_q_inner_data_gen.go#L226: return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field pq: %w", err)
tl_p_q_inner_data_gen.go#L233: return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field p: %w", err)
tl_p_q_inner_data_gen.go#L240: return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field q: %w", err)
tl_p_q_inner_data_gen.go#L247: return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field nonce: %w", err)
tl_p_q_inner_data_gen.go#L254: return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field server_nonce: %w", err)
tl_p_q_inner_data_gen.go#L261: return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field new_nonce: %w", err)
tl_ping_delay_disconnect_gen.go#L113: return fmt.Errorf("can't encode ping_delay_disconnect#f3427b8c as nil")
tl_ping_delay_disconnect_gen.go#L122: return fmt.Errorf("can't encode ping_delay_disconnect#f3427b8c as nil")
tl_ping_delay_disconnect_gen.go#L142: return fmt.Errorf("can't decode ping_delay_disconnect#f3427b8c to nil")
tl_ping_delay_disconnect_gen.go#L145: return fmt.Errorf("unable to decode ping_delay_disconnect#f3427b8c: %w", err)
tl_ping_delay_disconnect_gen.go#L153: return fmt.Errorf("can't decode ping_delay_disconnect#f3427b8c to nil")
tl_ping_delay_disconnect_gen.go#L158: return fmt.Errorf("unable to decode ping_delay_disconnect#f3427b8c: field ping_id: %w", err)
tl_ping_delay_disconnect_gen.go#L165: return fmt.Errorf("unable to decode ping_delay_disconnect#f3427b8c: field disconnect_delay: %w", err)
tl_ping_gen.go#L102: return fmt.Errorf("can't encode ping#7abe77ec as nil")
tl_ping_gen.go#L111: return fmt.Errorf("can't encode ping#7abe77ec as nil")
tl_ping_gen.go#L125: return fmt.Errorf("can't decode ping#7abe77ec to nil")
tl_ping_gen.go#L128: return fmt.Errorf("unable to decode ping#7abe77ec: %w", err)
tl_ping_gen.go#L136: return fmt.Errorf("can't decode ping#7abe77ec to nil")
tl_ping_gen.go#L141: return fmt.Errorf("unable to decode ping#7abe77ec: field ping_id: %w", err)
tl_pong_gen.go#L113: return fmt.Errorf("can't encode pong#347773c5 as nil")
tl_pong_gen.go#L122: return fmt.Errorf("can't encode pong#347773c5 as nil")
tl_pong_gen.go#L142: return fmt.Errorf("can't decode pong#347773c5 to nil")
tl_pong_gen.go#L145: return fmt.Errorf("unable to decode pong#347773c5: %w", err)
tl_pong_gen.go#L153: return fmt.Errorf("can't decode pong#347773c5 to nil")
tl_pong_gen.go#L158: return fmt.Errorf("unable to decode pong#347773c5: field msg_id: %w", err)
tl_pong_gen.go#L165: return fmt.Errorf("unable to decode pong#347773c5: field ping_id: %w", err)
tl_req_d_h_params_gen.go#L157: return fmt.Errorf("can't encode req_DH_params#d712e4be as nil")
tl_req_d_h_params_gen.go#L166: return fmt.Errorf("can't encode req_DH_params#d712e4be as nil")
tl_req_d_h_params_gen.go#L210: return fmt.Errorf("can't decode req_DH_params#d712e4be to nil")
tl_req_d_h_params_gen.go#L213: return fmt.Errorf("unable to decode req_DH_params#d712e4be: %w", err)
tl_req_d_h_params_gen.go#L221: return fmt.Errorf("can't decode req_DH_params#d712e4be to nil")
tl_req_d_h_params_gen.go#L226: return fmt.Errorf("unable to decode req_DH_params#d712e4be: field nonce: %w", err)
tl_req_d_h_params_gen.go#L233: return fmt.Errorf("unable to decode req_DH_params#d712e4be: field server_nonce: %w", err)
tl_req_d_h_params_gen.go#L240: return fmt.Errorf("unable to decode req_DH_params#d712e4be: field p: %w", err)
tl_req_d_h_params_gen.go#L247: return fmt.Errorf("unable to decode req_DH_params#d712e4be: field q: %w", err)
tl_req_d_h_params_gen.go#L254: return fmt.Errorf("unable to decode req_DH_params#d712e4be: field public_key_fingerprint: %w", err)
tl_req_d_h_params_gen.go#L261: return fmt.Errorf("unable to decode req_DH_params#d712e4be: field encrypted_data: %w", err)
tl_req_pq_gen.go#L102: return fmt.Errorf("can't encode req_pq#60469778 as nil")
tl_req_pq_gen.go#L111: return fmt.Errorf("can't encode req_pq#60469778 as nil")
tl_req_pq_gen.go#L125: return fmt.Errorf("can't decode req_pq#60469778 to nil")
tl_req_pq_gen.go#L128: return fmt.Errorf("unable to decode req_pq#60469778: %w", err)
tl_req_pq_gen.go#L136: return fmt.Errorf("can't decode req_pq#60469778 to nil")
tl_req_pq_gen.go#L141: return fmt.Errorf("unable to decode req_pq#60469778: field nonce: %w", err)
tl_req_pq_multi_gen.go#L102: return fmt.Errorf("can't encode req_pq_multi#be7e8ef1 as nil")
tl_req_pq_multi_gen.go#L111: return fmt.Errorf("can't encode req_pq_multi#be7e8ef1 as nil")
tl_req_pq_multi_gen.go#L125: return fmt.Errorf("can't decode req_pq_multi#be7e8ef1 to nil")
tl_req_pq_multi_gen.go#L128: return fmt.Errorf("unable to decode req_pq_multi#be7e8ef1: %w", err)
tl_req_pq_multi_gen.go#L136: return fmt.Errorf("can't decode req_pq_multi#be7e8ef1 to nil")
tl_req_pq_multi_gen.go#L141: return fmt.Errorf("unable to decode req_pq_multi#be7e8ef1: field nonce: %w", err)
tl_res_p_q_gen.go#L135: return fmt.Errorf("can't encode resPQ#5162463 as nil")
tl_res_p_q_gen.go#L144: return fmt.Errorf("can't encode resPQ#5162463 as nil")
tl_res_p_q_gen.go#L179: return fmt.Errorf("can't decode resPQ#5162463 to nil")
tl_res_p_q_gen.go#L182: return fmt.Errorf("unable to decode resPQ#5162463: %w", err)
tl_res_p_q_gen.go#L190: return fmt.Errorf("can't decode resPQ#5162463 to nil")
tl_res_p_q_gen.go#L195: return fmt.Errorf("unable to decode resPQ#5162463: field nonce: %w", err)
tl_res_p_q_gen.go#L202: return fmt.Errorf("unable to decode resPQ#5162463: field server_nonce: %w", err)
tl_res_p_q_gen.go#L209: return fmt.Errorf("unable to decode resPQ#5162463: field pq: %w", err)
tl_res_p_q_gen.go#L216: return fmt.Errorf("unable to decode resPQ#5162463: field server_public_key_fingerprints: %w", err)
tl_res_p_q_gen.go#L221: return fmt.Errorf("unable to decode resPQ#5162463: field server_public_key_fingerprints: %w", err)
tl_rpc_drop_answer_const_gen.go#L102: return fmt.Errorf("can't encode rpc_drop_answer#58e4a740 as nil")
tl_rpc_drop_answer_const_gen.go#L111: return fmt.Errorf("can't encode rpc_drop_answer#58e4a740 as nil")
tl_rpc_drop_answer_const_gen.go#L125: return fmt.Errorf("can't decode rpc_drop_answer#58e4a740 to nil")
tl_rpc_drop_answer_const_gen.go#L128: return fmt.Errorf("unable to decode rpc_drop_answer#58e4a740: %w", err)
tl_rpc_drop_answer_const_gen.go#L136: return fmt.Errorf("can't decode rpc_drop_answer#58e4a740 to nil")
tl_rpc_drop_answer_const_gen.go#L141: return fmt.Errorf("unable to decode rpc_drop_answer#58e4a740: field req_msg_id: %w", err)
tl_rpc_drop_answer_gen.go#L85: return fmt.Errorf("can't encode rpc_answer_unknown#5e2ad36e as nil")
tl_rpc_drop_answer_gen.go#L94: return fmt.Errorf("can't encode rpc_answer_unknown#5e2ad36e as nil")
tl_rpc_drop_answer_gen.go#L102: return fmt.Errorf("can't decode rpc_answer_unknown#5e2ad36e to nil")
tl_rpc_drop_answer_gen.go#L105: return fmt.Errorf("unable to decode rpc_answer_unknown#5e2ad36e: %w", err)
tl_rpc_drop_answer_gen.go#L113: return fmt.Errorf("can't decode rpc_answer_unknown#5e2ad36e to nil")
tl_rpc_drop_answer_gen.go#L184: return fmt.Errorf("can't encode rpc_answer_dropped_running#cd78e586 as nil")
tl_rpc_drop_answer_gen.go#L193: return fmt.Errorf("can't encode rpc_answer_dropped_running#cd78e586 as nil")
tl_rpc_drop_answer_gen.go#L201: return fmt.Errorf("can't decode rpc_answer_dropped_running#cd78e586 to nil")
tl_rpc_drop_answer_gen.go#L204: return fmt.Errorf("unable to decode rpc_answer_dropped_running#cd78e586: %w", err)
tl_rpc_drop_answer_gen.go#L212: return fmt.Errorf("can't decode rpc_answer_dropped_running#cd78e586 to nil")
tl_rpc_drop_answer_gen.go#L322: return fmt.Errorf("can't encode rpc_answer_dropped#a43ad8b7 as nil")
tl_rpc_drop_answer_gen.go#L331: return fmt.Errorf("can't encode rpc_answer_dropped#a43ad8b7 as nil")
tl_rpc_drop_answer_gen.go#L357: return fmt.Errorf("can't decode rpc_answer_dropped#a43ad8b7 to nil")
tl_rpc_drop_answer_gen.go#L360: return fmt.Errorf("unable to decode rpc_answer_dropped#a43ad8b7: %w", err)
tl_rpc_drop_answer_gen.go#L368: return fmt.Errorf("can't decode rpc_answer_dropped#a43ad8b7 to nil")
tl_rpc_drop_answer_gen.go#L373: return fmt.Errorf("unable to decode rpc_answer_dropped#a43ad8b7: field msg_id: %w", err)
tl_rpc_drop_answer_gen.go#L380: return fmt.Errorf("unable to decode rpc_answer_dropped#a43ad8b7: field seq_no: %w", err)
tl_rpc_drop_answer_gen.go#L387: return fmt.Errorf("unable to decode rpc_answer_dropped#a43ad8b7: field bytes: %w", err)
tl_rpc_drop_answer_gen.go#L450: return nil, fmt.Errorf("unable to decode RPCDropAnswerClass: %w", err)
tl_rpc_drop_answer_gen.go#L457: return nil, fmt.Errorf("unable to decode RPCDropAnswerClass: %w", err)
tl_rpc_drop_answer_gen.go#L464: return nil, fmt.Errorf("unable to decode RPCDropAnswerClass: %w", err)
tl_rpc_drop_answer_gen.go#L468: return nil, fmt.Errorf("unable to decode RPCDropAnswerClass: %w", bin.NewUnexpectedID(id))
tl_rpc_drop_answer_gen.go#L480: return fmt.Errorf("unable to decode RPCDropAnswerBox to nil")
tl_rpc_drop_answer_gen.go#L484: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_rpc_drop_answer_gen.go#L493: return fmt.Errorf("unable to encode RPCDropAnswerClass as nil")
tl_rpc_error_gen.go#L113: return fmt.Errorf("can't encode rpc_error#2144ca19 as nil")
tl_rpc_error_gen.go#L122: return fmt.Errorf("can't encode rpc_error#2144ca19 as nil")
tl_rpc_error_gen.go#L142: return fmt.Errorf("can't decode rpc_error#2144ca19 to nil")
tl_rpc_error_gen.go#L145: return fmt.Errorf("unable to decode rpc_error#2144ca19: %w", err)
tl_rpc_error_gen.go#L153: return fmt.Errorf("can't decode rpc_error#2144ca19 to nil")
tl_rpc_error_gen.go#L158: return fmt.Errorf("unable to decode rpc_error#2144ca19: field error_code: %w", err)
tl_rpc_error_gen.go#L165: return fmt.Errorf("unable to decode rpc_error#2144ca19: field error_message: %w", err)
tl_rpc_result_gen.go#L113: return fmt.Errorf("can't encode rpc_result#f35c6d01 as nil")
tl_rpc_result_gen.go#L122: return fmt.Errorf("can't encode rpc_result#f35c6d01 as nil")
tl_rpc_result_gen.go#L126: return fmt.Errorf("unable to encode rpc_result#f35c6d01: field result: %w", err)
tl_rpc_result_gen.go#L144: return fmt.Errorf("can't decode rpc_result#f35c6d01 to nil")
tl_rpc_result_gen.go#L147: return fmt.Errorf("unable to decode rpc_result#f35c6d01: %w", err)
tl_rpc_result_gen.go#L155: return fmt.Errorf("can't decode rpc_result#f35c6d01 to nil")
tl_rpc_result_gen.go#L160: return fmt.Errorf("unable to decode rpc_result#f35c6d01: field req_msg_id: %w", err)
tl_rpc_result_gen.go#L166: return fmt.Errorf("unable to decode rpc_result#f35c6d01: field result: %w", err)
tl_server_d_h_inner_data_gen.go#L157: return fmt.Errorf("can't encode server_DH_inner_data#b5890dba as nil")
tl_server_d_h_inner_data_gen.go#L166: return fmt.Errorf("can't encode server_DH_inner_data#b5890dba as nil")
tl_server_d_h_inner_data_gen.go#L210: return fmt.Errorf("can't decode server_DH_inner_data#b5890dba to nil")
tl_server_d_h_inner_data_gen.go#L213: return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: %w", err)
tl_server_d_h_inner_data_gen.go#L221: return fmt.Errorf("can't decode server_DH_inner_data#b5890dba to nil")
tl_server_d_h_inner_data_gen.go#L226: return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field nonce: %w", err)
tl_server_d_h_inner_data_gen.go#L233: return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field server_nonce: %w", err)
tl_server_d_h_inner_data_gen.go#L240: return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field g: %w", err)
tl_server_d_h_inner_data_gen.go#L247: return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field dh_prime: %w", err)
tl_server_d_h_inner_data_gen.go#L254: return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field g_a: %w", err)
tl_server_d_h_inner_data_gen.go#L261: return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field server_time: %w", err)
tl_server_d_h_params_gen.go#L124: return fmt.Errorf("can't encode server_DH_params_fail#79cb045d as nil")
tl_server_d_h_params_gen.go#L133: return fmt.Errorf("can't encode server_DH_params_fail#79cb045d as nil")
tl_server_d_h_params_gen.go#L159: return fmt.Errorf("can't decode server_DH_params_fail#79cb045d to nil")
tl_server_d_h_params_gen.go#L162: return fmt.Errorf("unable to decode server_DH_params_fail#79cb045d: %w", err)
tl_server_d_h_params_gen.go#L170: return fmt.Errorf("can't decode server_DH_params_fail#79cb045d to nil")
tl_server_d_h_params_gen.go#L175: return fmt.Errorf("unable to decode server_DH_params_fail#79cb045d: field nonce: %w", err)
tl_server_d_h_params_gen.go#L182: return fmt.Errorf("unable to decode server_DH_params_fail#79cb045d: field server_nonce: %w", err)
tl_server_d_h_params_gen.go#L189: return fmt.Errorf("unable to decode server_DH_params_fail#79cb045d: field new_nonce_hash: %w", err)
tl_server_d_h_params_gen.go#L301: return fmt.Errorf("can't encode server_DH_params_ok#d0e8075c as nil")
tl_server_d_h_params_gen.go#L310: return fmt.Errorf("can't encode server_DH_params_ok#d0e8075c as nil")
tl_server_d_h_params_gen.go#L336: return fmt.Errorf("can't decode server_DH_params_ok#d0e8075c to nil")
tl_server_d_h_params_gen.go#L339: return fmt.Errorf("unable to decode server_DH_params_ok#d0e8075c: %w", err)
tl_server_d_h_params_gen.go#L347: return fmt.Errorf("can't decode server_DH_params_ok#d0e8075c to nil")
tl_server_d_h_params_gen.go#L352: return fmt.Errorf("unable to decode server_DH_params_ok#d0e8075c: field nonce: %w", err)
tl_server_d_h_params_gen.go#L359: return fmt.Errorf("unable to decode server_DH_params_ok#d0e8075c: field server_nonce: %w", err)
tl_server_d_h_params_gen.go#L366: return fmt.Errorf("unable to decode server_DH_params_ok#d0e8075c: field encrypted_answer: %w", err)
tl_server_d_h_params_gen.go#L434: return nil, fmt.Errorf("unable to decode ServerDHParamsClass: %w", err)
tl_server_d_h_params_gen.go#L441: return nil, fmt.Errorf("unable to decode ServerDHParamsClass: %w", err)
tl_server_d_h_params_gen.go#L445: return nil, fmt.Errorf("unable to decode ServerDHParamsClass: %w", bin.NewUnexpectedID(id))
tl_server_d_h_params_gen.go#L457: return fmt.Errorf("unable to decode ServerDHParamsBox to nil")
tl_server_d_h_params_gen.go#L461: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_server_d_h_params_gen.go#L470: return fmt.Errorf("unable to encode ServerDHParamsClass as nil")
tl_set_client_d_h_params_answer_gen.go#L124: return fmt.Errorf("can't encode dh_gen_ok#3bcbf734 as nil")
tl_set_client_d_h_params_answer_gen.go#L133: return fmt.Errorf("can't encode dh_gen_ok#3bcbf734 as nil")
tl_set_client_d_h_params_answer_gen.go#L159: return fmt.Errorf("can't decode dh_gen_ok#3bcbf734 to nil")
tl_set_client_d_h_params_answer_gen.go#L162: return fmt.Errorf("unable to decode dh_gen_ok#3bcbf734: %w", err)
tl_set_client_d_h_params_answer_gen.go#L170: return fmt.Errorf("can't decode dh_gen_ok#3bcbf734 to nil")
tl_set_client_d_h_params_answer_gen.go#L175: return fmt.Errorf("unable to decode dh_gen_ok#3bcbf734: field nonce: %w", err)
tl_set_client_d_h_params_answer_gen.go#L182: return fmt.Errorf("unable to decode dh_gen_ok#3bcbf734: field server_nonce: %w", err)
tl_set_client_d_h_params_answer_gen.go#L189: return fmt.Errorf("unable to decode dh_gen_ok#3bcbf734: field new_nonce_hash1: %w", err)
tl_set_client_d_h_params_answer_gen.go#L301: return fmt.Errorf("can't encode dh_gen_retry#46dc1fb9 as nil")
tl_set_client_d_h_params_answer_gen.go#L310: return fmt.Errorf("can't encode dh_gen_retry#46dc1fb9 as nil")
tl_set_client_d_h_params_answer_gen.go#L336: return fmt.Errorf("can't decode dh_gen_retry#46dc1fb9 to nil")
tl_set_client_d_h_params_answer_gen.go#L339: return fmt.Errorf("unable to decode dh_gen_retry#46dc1fb9: %w", err)
tl_set_client_d_h_params_answer_gen.go#L347: return fmt.Errorf("can't decode dh_gen_retry#46dc1fb9 to nil")
tl_set_client_d_h_params_answer_gen.go#L352: return fmt.Errorf("unable to decode dh_gen_retry#46dc1fb9: field nonce: %w", err)
tl_set_client_d_h_params_answer_gen.go#L359: return fmt.Errorf("unable to decode dh_gen_retry#46dc1fb9: field server_nonce: %w", err)
tl_set_client_d_h_params_answer_gen.go#L366: return fmt.Errorf("unable to decode dh_gen_retry#46dc1fb9: field new_nonce_hash2: %w", err)
tl_set_client_d_h_params_answer_gen.go#L478: return fmt.Errorf("can't encode dh_gen_fail#a69dae02 as nil")
tl_set_client_d_h_params_answer_gen.go#L487: return fmt.Errorf("can't encode dh_gen_fail#a69dae02 as nil")
tl_set_client_d_h_params_answer_gen.go#L513: return fmt.Errorf("can't decode dh_gen_fail#a69dae02 to nil")
tl_set_client_d_h_params_answer_gen.go#L516: return fmt.Errorf("unable to decode dh_gen_fail#a69dae02: %w", err)
tl_set_client_d_h_params_answer_gen.go#L524: return fmt.Errorf("can't decode dh_gen_fail#a69dae02 to nil")
tl_set_client_d_h_params_answer_gen.go#L529: return fmt.Errorf("unable to decode dh_gen_fail#a69dae02: field nonce: %w", err)
tl_set_client_d_h_params_answer_gen.go#L536: return fmt.Errorf("unable to decode dh_gen_fail#a69dae02: field server_nonce: %w", err)
tl_set_client_d_h_params_answer_gen.go#L543: return fmt.Errorf("unable to decode dh_gen_fail#a69dae02: field new_nonce_hash3: %w", err)
tl_set_client_d_h_params_answer_gen.go#L612: return nil, fmt.Errorf("unable to decode SetClientDHParamsAnswerClass: %w", err)
tl_set_client_d_h_params_answer_gen.go#L619: return nil, fmt.Errorf("unable to decode SetClientDHParamsAnswerClass: %w", err)
tl_set_client_d_h_params_answer_gen.go#L626: return nil, fmt.Errorf("unable to decode SetClientDHParamsAnswerClass: %w", err)
tl_set_client_d_h_params_answer_gen.go#L630: return nil, fmt.Errorf("unable to decode SetClientDHParamsAnswerClass: %w", bin.NewUnexpectedID(id))
tl_set_client_d_h_params_answer_gen.go#L642: return fmt.Errorf("unable to decode SetClientDHParamsAnswerBox to nil")
tl_set_client_d_h_params_answer_gen.go#L646: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_set_client_d_h_params_answer_gen.go#L655: return fmt.Errorf("unable to encode SetClientDHParamsAnswerClass as nil")
tl_set_client_d_h_params_gen.go#L124: return fmt.Errorf("can't encode set_client_DH_params#f5045f1f as nil")
tl_set_client_d_h_params_gen.go#L133: return fmt.Errorf("can't encode set_client_DH_params#f5045f1f as nil")
tl_set_client_d_h_params_gen.go#L159: return fmt.Errorf("can't decode set_client_DH_params#f5045f1f to nil")
tl_set_client_d_h_params_gen.go#L162: return fmt.Errorf("unable to decode set_client_DH_params#f5045f1f: %w", err)
tl_set_client_d_h_params_gen.go#L170: return fmt.Errorf("can't decode set_client_DH_params#f5045f1f to nil")
tl_set_client_d_h_params_gen.go#L175: return fmt.Errorf("unable to decode set_client_DH_params#f5045f1f: field nonce: %w", err)
tl_set_client_d_h_params_gen.go#L182: return fmt.Errorf("unable to decode set_client_DH_params#f5045f1f: field server_nonce: %w", err)
tl_set_client_d_h_params_gen.go#L189: return fmt.Errorf("unable to decode set_client_DH_params#f5045f1f: field encrypted_data: %w", err)
github.com/gotd/td/internal/proto
container.go#L62: return fmt.Errorf("message length %d is invalid", m.Bytes)
unencrypted_message.go#L24: return fmt.Errorf("unexpected auth_key_id %d of plaintext message", id)
unencrypted_message.go#L42: return fmt.Errorf("failed to consume payload: %w", err)
github.com/gotd/td/internal/proto/codec
abridged.go#L128: return fmt.Errorf("failed to read payload: %w", err)
codec.go#L33: return 0, fmt.Errorf("failed to read length: %w", err)
full.go#L97: return fmt.Errorf("failed to read seqno, buffer and crc: %w", err)
intermediate.go#L100: return fmt.Errorf("failed to read payload: %w", err)
github.com/gotd/td/telegram
cdn.go#L23: return nil, fmt.Errorf("failed to parse RSA from PEM: %w", err)
github.com/gotd/td/tg
tl_access_point_rule_gen.go#L126: return fmt.Errorf("can't encode accessPointRule#4679b65f as nil")
tl_access_point_rule_gen.go#L135: return fmt.Errorf("can't encode accessPointRule#4679b65f as nil")
tl_access_point_rule_gen.go#L142: return fmt.Errorf("unable to encode accessPointRule#4679b65f: field ips element with index %d is nil", idx)
tl_access_point_rule_gen.go#L145: return fmt.Errorf("unable to encode bare accessPointRule#4679b65f: field ips element with index %d: %w", idx, err)
tl_access_point_rule_gen.go#L174: return fmt.Errorf("can't decode accessPointRule#4679b65f to nil")
tl_access_point_rule_gen.go#L177: return fmt.Errorf("unable to decode accessPointRule#4679b65f: %w", err)
tl_access_point_rule_gen.go#L185: return fmt.Errorf("can't decode accessPointRule#4679b65f to nil")
tl_access_point_rule_gen.go#L190: return fmt.Errorf("unable to decode accessPointRule#4679b65f: field phone_prefix_rules: %w", err)
tl_access_point_rule_gen.go#L197: return fmt.Errorf("unable to decode accessPointRule#4679b65f: field dc_id: %w", err)
tl_access_point_rule_gen.go#L204: return fmt.Errorf("unable to decode accessPointRule#4679b65f: field ips: %w", err)
tl_access_point_rule_gen.go#L209: return fmt.Errorf("unable to decode accessPointRule#4679b65f: field ips: %w", err)
tl_account_accept_authorization_gen.go#L150: return fmt.Errorf("can't encode account.acceptAuthorization#e7027c94 as nil")
tl_account_accept_authorization_gen.go#L159: return fmt.Errorf("can't encode account.acceptAuthorization#e7027c94 as nil")
tl_account_accept_authorization_gen.go#L167: return fmt.Errorf("unable to encode account.acceptAuthorization#e7027c94: field value_hashes element with index %d: %w", idx, err)
tl_account_accept_authorization_gen.go#L171: return fmt.Errorf("unable to encode account.acceptAuthorization#e7027c94: field credentials: %w", err)
tl_account_accept_authorization_gen.go#L204: return fmt.Errorf("can't decode account.acceptAuthorization#e7027c94 to nil")
tl_account_accept_authorization_gen.go#L207: return fmt.Errorf("unable to decode account.acceptAuthorization#e7027c94: %w", err)
tl_account_accept_authorization_gen.go#L215: return fmt.Errorf("can't decode account.acceptAuthorization#e7027c94 to nil")
tl_account_accept_authorization_gen.go#L220: return fmt.Errorf("unable to decode account.acceptAuthorization#e7027c94: field bot_id: %w", err)
tl_account_accept_authorization_gen.go#L227: return fmt.Errorf("unable to decode account.acceptAuthorization#e7027c94: field scope: %w", err)
tl_account_accept_authorization_gen.go#L234: return fmt.Errorf("unable to decode account.acceptAuthorization#e7027c94: field public_key: %w", err)
tl_account_accept_authorization_gen.go#L241: return fmt.Errorf("unable to decode account.acceptAuthorization#e7027c94: field value_hashes: %w", err)
tl_account_accept_authorization_gen.go#L246: return fmt.Errorf("unable to decode account.acceptAuthorization#e7027c94: field value_hashes: %w", err)
tl_account_accept_authorization_gen.go#L253: return fmt.Errorf("unable to decode account.acceptAuthorization#e7027c94: field credentials: %w", err)
tl_account_authorization_form_gen.go#L175: return fmt.Errorf("can't encode account.authorizationForm#ad2e1cd8 as nil")
tl_account_authorization_form_gen.go#L184: return fmt.Errorf("can't encode account.authorizationForm#ad2e1cd8 as nil")
tl_account_authorization_form_gen.go#L190: return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field flags: %w", err)
tl_account_authorization_form_gen.go#L195: return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field required_types element with index %d is nil", idx)
tl_account_authorization_form_gen.go#L198: return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field required_types element with index %d: %w", idx, err)
tl_account_authorization_form_gen.go#L204: return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field values element with index %d: %w", idx, err)
tl_account_authorization_form_gen.go#L210: return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field errors element with index %d is nil", idx)
tl_account_authorization_form_gen.go#L213: return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field errors element with index %d: %w", idx, err)
tl_account_authorization_form_gen.go#L219: return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field users element with index %d is nil", idx)
tl_account_authorization_form_gen.go#L222: return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field users element with index %d: %w", idx, err)
tl_account_authorization_form_gen.go#L284: return fmt.Errorf("can't decode account.authorizationForm#ad2e1cd8 to nil")
tl_account_authorization_form_gen.go#L287: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: %w", err)
tl_account_authorization_form_gen.go#L295: return fmt.Errorf("can't decode account.authorizationForm#ad2e1cd8 to nil")
tl_account_authorization_form_gen.go#L299: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field flags: %w", err)
tl_account_authorization_form_gen.go#L305: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field required_types: %w", err)
tl_account_authorization_form_gen.go#L310: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field required_types: %w", err)
tl_account_authorization_form_gen.go#L318: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field values: %w", err)
tl_account_authorization_form_gen.go#L323: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field values: %w", err)
tl_account_authorization_form_gen.go#L331: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field errors: %w", err)
tl_account_authorization_form_gen.go#L336: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field errors: %w", err)
tl_account_authorization_form_gen.go#L344: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field users: %w", err)
tl_account_authorization_form_gen.go#L349: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field users: %w", err)
tl_account_authorization_form_gen.go#L357: return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field privacy_policy_url: %w", err)
tl_account_authorizations_gen.go#L105: return fmt.Errorf("can't encode account.authorizations#1250abde as nil")
tl_account_authorizations_gen.go#L114: return fmt.Errorf("can't encode account.authorizations#1250abde as nil")
tl_account_authorizations_gen.go#L119: return fmt.Errorf("unable to encode account.authorizations#1250abde: field authorizations element with index %d: %w", idx, err)
tl_account_authorizations_gen.go#L133: return fmt.Errorf("can't decode account.authorizations#1250abde to nil")
tl_account_authorizations_gen.go#L136: return fmt.Errorf("unable to decode account.authorizations#1250abde: %w", err)
tl_account_authorizations_gen.go#L144: return fmt.Errorf("can't decode account.authorizations#1250abde to nil")
tl_account_authorizations_gen.go#L149: return fmt.Errorf("unable to decode account.authorizations#1250abde: field authorizations: %w", err)
tl_account_authorizations_gen.go#L154: return fmt.Errorf("unable to decode account.authorizations#1250abde: field authorizations: %w", err)
tl_account_auto_download_settings_gen.go#L127: return fmt.Errorf("can't encode account.autoDownloadSettings#63cacf26 as nil")
tl_account_auto_download_settings_gen.go#L136: return fmt.Errorf("can't encode account.autoDownloadSettings#63cacf26 as nil")
tl_account_auto_download_settings_gen.go#L139: return fmt.Errorf("unable to encode account.autoDownloadSettings#63cacf26: field low: %w", err)
tl_account_auto_download_settings_gen.go#L142: return fmt.Errorf("unable to encode account.autoDownloadSettings#63cacf26: field medium: %w", err)
tl_account_auto_download_settings_gen.go#L145: return fmt.Errorf("unable to encode account.autoDownloadSettings#63cacf26: field high: %w", err)
tl_account_auto_download_settings_gen.go#L168: return fmt.Errorf("can't decode account.autoDownloadSettings#63cacf26 to nil")
tl_account_auto_download_settings_gen.go#L171: return fmt.Errorf("unable to decode account.autoDownloadSettings#63cacf26: %w", err)
tl_account_auto_download_settings_gen.go#L179: return fmt.Errorf("can't decode account.autoDownloadSettings#63cacf26 to nil")
tl_account_auto_download_settings_gen.go#L183: return fmt.Errorf("unable to decode account.autoDownloadSettings#63cacf26: field low: %w", err)
tl_account_auto_download_settings_gen.go#L188: return fmt.Errorf("unable to decode account.autoDownloadSettings#63cacf26: field medium: %w", err)
tl_account_auto_download_settings_gen.go#L193: return fmt.Errorf("unable to decode account.autoDownloadSettings#63cacf26: field high: %w", err)
tl_account_cancel_password_email_gen.go#L91: return fmt.Errorf("can't encode account.cancelPasswordEmail#c1cbd5b6 as nil")
tl_account_cancel_password_email_gen.go#L100: return fmt.Errorf("can't encode account.cancelPasswordEmail#c1cbd5b6 as nil")
tl_account_cancel_password_email_gen.go#L108: return fmt.Errorf("can't decode account.cancelPasswordEmail#c1cbd5b6 to nil")
tl_account_cancel_password_email_gen.go#L111: return fmt.Errorf("unable to decode account.cancelPasswordEmail#c1cbd5b6: %w", err)
tl_account_cancel_password_email_gen.go#L119: return fmt.Errorf("can't decode account.cancelPasswordEmail#c1cbd5b6 to nil")
tl_account_change_phone_gen.go#L133: return fmt.Errorf("can't encode account.changePhone#70c32edb as nil")
tl_account_change_phone_gen.go#L142: return fmt.Errorf("can't encode account.changePhone#70c32edb as nil")
tl_account_change_phone_gen.go#L168: return fmt.Errorf("can't decode account.changePhone#70c32edb to nil")
tl_account_change_phone_gen.go#L171: return fmt.Errorf("unable to decode account.changePhone#70c32edb: %w", err)
tl_account_change_phone_gen.go#L179: return fmt.Errorf("can't decode account.changePhone#70c32edb to nil")
tl_account_change_phone_gen.go#L184: return fmt.Errorf("unable to decode account.changePhone#70c32edb: field phone_number: %w", err)
tl_account_change_phone_gen.go#L191: return fmt.Errorf("unable to decode account.changePhone#70c32edb: field phone_code_hash: %w", err)
tl_account_change_phone_gen.go#L198: return fmt.Errorf("unable to decode account.changePhone#70c32edb: field phone_code: %w", err)
tl_account_check_username_gen.go#L106: return fmt.Errorf("can't encode account.checkUsername#2714d86c as nil")
tl_account_check_username_gen.go#L115: return fmt.Errorf("can't encode account.checkUsername#2714d86c as nil")
tl_account_check_username_gen.go#L129: return fmt.Errorf("can't decode account.checkUsername#2714d86c to nil")
tl_account_check_username_gen.go#L132: return fmt.Errorf("unable to decode account.checkUsername#2714d86c: %w", err)
tl_account_check_username_gen.go#L140: return fmt.Errorf("can't decode account.checkUsername#2714d86c to nil")
tl_account_check_username_gen.go#L145: return fmt.Errorf("unable to decode account.checkUsername#2714d86c: field username: %w", err)
tl_account_confirm_password_email_gen.go#L111: return fmt.Errorf("can't encode account.confirmPasswordEmail#8fdf1920 as nil")
tl_account_confirm_password_email_gen.go#L120: return fmt.Errorf("can't encode account.confirmPasswordEmail#8fdf1920 as nil")
tl_account_confirm_password_email_gen.go#L134: return fmt.Errorf("can't decode account.confirmPasswordEmail#8fdf1920 to nil")
tl_account_confirm_password_email_gen.go#L137: return fmt.Errorf("unable to decode account.confirmPasswordEmail#8fdf1920: %w", err)
tl_account_confirm_password_email_gen.go#L145: return fmt.Errorf("can't decode account.confirmPasswordEmail#8fdf1920 to nil")
tl_account_confirm_password_email_gen.go#L150: return fmt.Errorf("unable to decode account.confirmPasswordEmail#8fdf1920: field code: %w", err)
tl_account_confirm_phone_gen.go#L125: return fmt.Errorf("can't encode account.confirmPhone#5f2178c3 as nil")
tl_account_confirm_phone_gen.go#L134: return fmt.Errorf("can't encode account.confirmPhone#5f2178c3 as nil")
tl_account_confirm_phone_gen.go#L154: return fmt.Errorf("can't decode account.confirmPhone#5f2178c3 to nil")
tl_account_confirm_phone_gen.go#L157: return fmt.Errorf("unable to decode account.confirmPhone#5f2178c3: %w", err)
tl_account_confirm_phone_gen.go#L165: return fmt.Errorf("can't decode account.confirmPhone#5f2178c3 to nil")
tl_account_confirm_phone_gen.go#L170: return fmt.Errorf("unable to decode account.confirmPhone#5f2178c3: field phone_code_hash: %w", err)
tl_account_confirm_phone_gen.go#L177: return fmt.Errorf("unable to decode account.confirmPhone#5f2178c3: field phone_code: %w", err)
tl_account_content_settings_gen.go#L127: return fmt.Errorf("can't encode account.contentSettings#57e28221 as nil")
tl_account_content_settings_gen.go#L136: return fmt.Errorf("can't encode account.contentSettings#57e28221 as nil")
tl_account_content_settings_gen.go#L145: return fmt.Errorf("unable to encode account.contentSettings#57e28221: field flags: %w", err)
tl_account_content_settings_gen.go#L185: return fmt.Errorf("can't decode account.contentSettings#57e28221 to nil")
tl_account_content_settings_gen.go#L188: return fmt.Errorf("unable to decode account.contentSettings#57e28221: %w", err)
tl_account_content_settings_gen.go#L196: return fmt.Errorf("can't decode account.contentSettings#57e28221 to nil")
tl_account_content_settings_gen.go#L200: return fmt.Errorf("unable to decode account.contentSettings#57e28221: field flags: %w", err)
tl_account_create_theme_gen.go#L158: return fmt.Errorf("can't encode account.createTheme#8432c21f as nil")
tl_account_create_theme_gen.go#L167: return fmt.Errorf("can't encode account.createTheme#8432c21f as nil")
tl_account_create_theme_gen.go#L176: return fmt.Errorf("unable to encode account.createTheme#8432c21f: field flags: %w", err)
tl_account_create_theme_gen.go#L182: return fmt.Errorf("unable to encode account.createTheme#8432c21f: field document is nil")
tl_account_create_theme_gen.go#L185: return fmt.Errorf("unable to encode account.createTheme#8432c21f: field document: %w", err)
tl_account_create_theme_gen.go#L190: return fmt.Errorf("unable to encode account.createTheme#8432c21f: field settings: %w", err)
tl_account_create_theme_gen.go#L248: return fmt.Errorf("can't decode account.createTheme#8432c21f to nil")
tl_account_create_theme_gen.go#L251: return fmt.Errorf("unable to decode account.createTheme#8432c21f: %w", err)
tl_account_create_theme_gen.go#L259: return fmt.Errorf("can't decode account.createTheme#8432c21f to nil")
tl_account_create_theme_gen.go#L263: return fmt.Errorf("unable to decode account.createTheme#8432c21f: field flags: %w", err)
tl_account_create_theme_gen.go#L269: return fmt.Errorf("unable to decode account.createTheme#8432c21f: field slug: %w", err)
tl_account_create_theme_gen.go#L276: return fmt.Errorf("unable to decode account.createTheme#8432c21f: field title: %w", err)
tl_account_create_theme_gen.go#L283: return fmt.Errorf("unable to decode account.createTheme#8432c21f: field document: %w", err)
tl_account_create_theme_gen.go#L289: return fmt.Errorf("unable to decode account.createTheme#8432c21f: field settings: %w", err)
tl_account_days_ttl_gen.go#L105: return fmt.Errorf("can't encode accountDaysTTL#b8d0afdf as nil")
tl_account_days_ttl_gen.go#L114: return fmt.Errorf("can't encode accountDaysTTL#b8d0afdf as nil")
tl_account_days_ttl_gen.go#L128: return fmt.Errorf("can't decode accountDaysTTL#b8d0afdf to nil")
tl_account_days_ttl_gen.go#L131: return fmt.Errorf("unable to decode accountDaysTTL#b8d0afdf: %w", err)
tl_account_days_ttl_gen.go#L139: return fmt.Errorf("can't decode accountDaysTTL#b8d0afdf to nil")
tl_account_days_ttl_gen.go#L144: return fmt.Errorf("unable to decode accountDaysTTL#b8d0afdf: field days: %w", err)
tl_account_delete_account_gen.go#L110: return fmt.Errorf("can't encode account.deleteAccount#418d4e0b as nil")
tl_account_delete_account_gen.go#L119: return fmt.Errorf("can't encode account.deleteAccount#418d4e0b as nil")
tl_account_delete_account_gen.go#L133: return fmt.Errorf("can't decode account.deleteAccount#418d4e0b to nil")
tl_account_delete_account_gen.go#L136: return fmt.Errorf("unable to decode account.deleteAccount#418d4e0b: %w", err)
tl_account_delete_account_gen.go#L144: return fmt.Errorf("can't decode account.deleteAccount#418d4e0b to nil")
tl_account_delete_account_gen.go#L149: return fmt.Errorf("unable to decode account.deleteAccount#418d4e0b: field reason: %w", err)
tl_account_delete_secure_value_gen.go#L109: return fmt.Errorf("can't encode account.deleteSecureValue#b880bc4b as nil")
tl_account_delete_secure_value_gen.go#L118: return fmt.Errorf("can't encode account.deleteSecureValue#b880bc4b as nil")
tl_account_delete_secure_value_gen.go#L123: return fmt.Errorf("unable to encode account.deleteSecureValue#b880bc4b: field types element with index %d is nil", idx)
tl_account_delete_secure_value_gen.go#L126: return fmt.Errorf("unable to encode account.deleteSecureValue#b880bc4b: field types element with index %d: %w", idx, err)
tl_account_delete_secure_value_gen.go#L145: return fmt.Errorf("can't decode account.deleteSecureValue#b880bc4b to nil")
tl_account_delete_secure_value_gen.go#L148: return fmt.Errorf("unable to decode account.deleteSecureValue#b880bc4b: %w", err)
tl_account_delete_secure_value_gen.go#L156: return fmt.Errorf("can't decode account.deleteSecureValue#b880bc4b to nil")
tl_account_delete_secure_value_gen.go#L161: return fmt.Errorf("unable to decode account.deleteSecureValue#b880bc4b: field types: %w", err)
tl_account_delete_secure_value_gen.go#L166: return fmt.Errorf("unable to decode account.deleteSecureValue#b880bc4b: field types: %w", err)
tl_account_finish_takeout_session_gen.go#L114: return fmt.Errorf("can't encode account.finishTakeoutSession#1d2652ee as nil")
tl_account_finish_takeout_session_gen.go#L123: return fmt.Errorf("can't encode account.finishTakeoutSession#1d2652ee as nil")
tl_account_finish_takeout_session_gen.go#L129: return fmt.Errorf("unable to encode account.finishTakeoutSession#1d2652ee: field flags: %w", err)
tl_account_finish_takeout_session_gen.go#L153: return fmt.Errorf("can't decode account.finishTakeoutSession#1d2652ee to nil")
tl_account_finish_takeout_session_gen.go#L156: return fmt.Errorf("unable to decode account.finishTakeoutSession#1d2652ee: %w", err)
tl_account_finish_takeout_session_gen.go#L164: return fmt.Errorf("can't decode account.finishTakeoutSession#1d2652ee to nil")
tl_account_finish_takeout_session_gen.go#L168: return fmt.Errorf("unable to decode account.finishTakeoutSession#1d2652ee: field flags: %w", err)
tl_account_get_account_ttl_gen.go#L88: return fmt.Errorf("can't encode account.getAccountTTL#8fc711d as nil")
tl_account_get_account_ttl_gen.go#L97: return fmt.Errorf("can't encode account.getAccountTTL#8fc711d as nil")
tl_account_get_account_ttl_gen.go#L105: return fmt.Errorf("can't decode account.getAccountTTL#8fc711d to nil")
tl_account_get_account_ttl_gen.go#L108: return fmt.Errorf("unable to decode account.getAccountTTL#8fc711d: %w", err)
tl_account_get_account_ttl_gen.go#L116: return fmt.Errorf("can't decode account.getAccountTTL#8fc711d to nil")
tl_account_get_all_secure_values_gen.go#L92: return fmt.Errorf("can't encode account.getAllSecureValues#b288bc7d as nil")
tl_account_get_all_secure_values_gen.go#L101: return fmt.Errorf("can't encode account.getAllSecureValues#b288bc7d as nil")
tl_account_get_all_secure_values_gen.go#L109: return fmt.Errorf("can't decode account.getAllSecureValues#b288bc7d to nil")
tl_account_get_all_secure_values_gen.go#L112: return fmt.Errorf("unable to decode account.getAllSecureValues#b288bc7d: %w", err)
tl_account_get_all_secure_values_gen.go#L120: return fmt.Errorf("can't decode account.getAllSecureValues#b288bc7d to nil")
tl_account_get_authorization_form_gen.go#L127: return fmt.Errorf("can't encode account.getAuthorizationForm#b86ba8e1 as nil")
tl_account_get_authorization_form_gen.go#L136: return fmt.Errorf("can't encode account.getAuthorizationForm#b86ba8e1 as nil")
tl_account_get_authorization_form_gen.go#L162: return fmt.Errorf("can't decode account.getAuthorizationForm#b86ba8e1 to nil")
tl_account_get_authorization_form_gen.go#L165: return fmt.Errorf("unable to decode account.getAuthorizationForm#b86ba8e1: %w", err)
tl_account_get_authorization_form_gen.go#L173: return fmt.Errorf("can't decode account.getAuthorizationForm#b86ba8e1 to nil")
tl_account_get_authorization_form_gen.go#L178: return fmt.Errorf("unable to decode account.getAuthorizationForm#b86ba8e1: field bot_id: %w", err)
tl_account_get_authorization_form_gen.go#L185: return fmt.Errorf("unable to decode account.getAuthorizationForm#b86ba8e1: field scope: %w", err)
tl_account_get_authorization_form_gen.go#L192: return fmt.Errorf("unable to decode account.getAuthorizationForm#b86ba8e1: field public_key: %w", err)
tl_account_get_authorizations_gen.go#L88: return fmt.Errorf("can't encode account.getAuthorizations#e320c158 as nil")
tl_account_get_authorizations_gen.go#L97: return fmt.Errorf("can't encode account.getAuthorizations#e320c158 as nil")
tl_account_get_authorizations_gen.go#L105: return fmt.Errorf("can't decode account.getAuthorizations#e320c158 to nil")
tl_account_get_authorizations_gen.go#L108: return fmt.Errorf("unable to decode account.getAuthorizations#e320c158: %w", err)
tl_account_get_authorizations_gen.go#L116: return fmt.Errorf("can't decode account.getAuthorizations#e320c158 to nil")
tl_account_get_auto_download_settings_gen.go#L88: return fmt.Errorf("can't encode account.getAutoDownloadSettings#56da0b3f as nil")
tl_account_get_auto_download_settings_gen.go#L97: return fmt.Errorf("can't encode account.getAutoDownloadSettings#56da0b3f as nil")
tl_account_get_auto_download_settings_gen.go#L105: return fmt.Errorf("can't decode account.getAutoDownloadSettings#56da0b3f to nil")
tl_account_get_auto_download_settings_gen.go#L108: return fmt.Errorf("unable to decode account.getAutoDownloadSettings#56da0b3f: %w", err)
tl_account_get_auto_download_settings_gen.go#L116: return fmt.Errorf("can't decode account.getAutoDownloadSettings#56da0b3f to nil")
tl_account_get_contact_sign_up_notification_gen.go#L88: return fmt.Errorf("can't encode account.getContactSignUpNotification#9f07c728 as nil")
tl_account_get_contact_sign_up_notification_gen.go#L97: return fmt.Errorf("can't encode account.getContactSignUpNotification#9f07c728 as nil")
tl_account_get_contact_sign_up_notification_gen.go#L105: return fmt.Errorf("can't decode account.getContactSignUpNotification#9f07c728 to nil")
tl_account_get_contact_sign_up_notification_gen.go#L108: return fmt.Errorf("unable to decode account.getContactSignUpNotification#9f07c728: %w", err)
tl_account_get_contact_sign_up_notification_gen.go#L116: return fmt.Errorf("can't decode account.getContactSignUpNotification#9f07c728 to nil")
tl_account_get_content_settings_gen.go#L88: return fmt.Errorf("can't encode account.getContentSettings#8b9b4dae as nil")
tl_account_get_content_settings_gen.go#L97: return fmt.Errorf("can't encode account.getContentSettings#8b9b4dae as nil")
tl_account_get_content_settings_gen.go#L105: return fmt.Errorf("can't decode account.getContentSettings#8b9b4dae to nil")
tl_account_get_content_settings_gen.go#L108: return fmt.Errorf("unable to decode account.getContentSettings#8b9b4dae: %w", err)
tl_account_get_content_settings_gen.go#L116: return fmt.Errorf("can't decode account.getContentSettings#8b9b4dae to nil")
tl_account_get_global_privacy_settings_gen.go#L88: return fmt.Errorf("can't encode account.getGlobalPrivacySettings#eb2b4cf6 as nil")
tl_account_get_global_privacy_settings_gen.go#L97: return fmt.Errorf("can't encode account.getGlobalPrivacySettings#eb2b4cf6 as nil")
tl_account_get_global_privacy_settings_gen.go#L105: return fmt.Errorf("can't decode account.getGlobalPrivacySettings#eb2b4cf6 to nil")
tl_account_get_global_privacy_settings_gen.go#L108: return fmt.Errorf("unable to decode account.getGlobalPrivacySettings#eb2b4cf6: %w", err)
tl_account_get_global_privacy_settings_gen.go#L116: return fmt.Errorf("can't decode account.getGlobalPrivacySettings#eb2b4cf6 to nil")
tl_account_get_multi_wall_papers_gen.go#L105: return fmt.Errorf("can't encode account.getMultiWallPapers#65ad71dc as nil")
tl_account_get_multi_wall_papers_gen.go#L114: return fmt.Errorf("can't encode account.getMultiWallPapers#65ad71dc as nil")
tl_account_get_multi_wall_papers_gen.go#L119: return fmt.Errorf("unable to encode account.getMultiWallPapers#65ad71dc: field wallpapers element with index %d is nil", idx)
tl_account_get_multi_wall_papers_gen.go#L122: return fmt.Errorf("unable to encode account.getMultiWallPapers#65ad71dc: field wallpapers element with index %d: %w", idx, err)
tl_account_get_multi_wall_papers_gen.go#L141: return fmt.Errorf("can't decode account.getMultiWallPapers#65ad71dc to nil")
tl_account_get_multi_wall_papers_gen.go#L144: return fmt.Errorf("unable to decode account.getMultiWallPapers#65ad71dc: %w", err)
tl_account_get_multi_wall_papers_gen.go#L152: return fmt.Errorf("can't decode account.getMultiWallPapers#65ad71dc to nil")
tl_account_get_multi_wall_papers_gen.go#L157: return fmt.Errorf("unable to decode account.getMultiWallPapers#65ad71dc: field wallpapers: %w", err)
tl_account_get_multi_wall_papers_gen.go#L162: return fmt.Errorf("unable to decode account.getMultiWallPapers#65ad71dc: field wallpapers: %w", err)
tl_account_get_notify_exceptions_gen.go#L131: return fmt.Errorf("can't encode account.getNotifyExceptions#53577479 as nil")
tl_account_get_notify_exceptions_gen.go#L140: return fmt.Errorf("can't encode account.getNotifyExceptions#53577479 as nil")
tl_account_get_notify_exceptions_gen.go#L149: return fmt.Errorf("unable to encode account.getNotifyExceptions#53577479: field flags: %w", err)
tl_account_get_notify_exceptions_gen.go#L153: return fmt.Errorf("unable to encode account.getNotifyExceptions#53577479: field peer is nil")
tl_account_get_notify_exceptions_gen.go#L156: return fmt.Errorf("unable to encode account.getNotifyExceptions#53577479: field peer: %w", err)
tl_account_get_notify_exceptions_gen.go#L196: return fmt.Errorf("can't decode account.getNotifyExceptions#53577479 to nil")
tl_account_get_notify_exceptions_gen.go#L199: return fmt.Errorf("unable to decode account.getNotifyExceptions#53577479: %w", err)
tl_account_get_notify_exceptions_gen.go#L207: return fmt.Errorf("can't decode account.getNotifyExceptions#53577479 to nil")
tl_account_get_notify_exceptions_gen.go#L211: return fmt.Errorf("unable to decode account.getNotifyExceptions#53577479: field flags: %w", err)
tl_account_get_notify_exceptions_gen.go#L218: return fmt.Errorf("unable to decode account.getNotifyExceptions#53577479: field peer: %w", err)
tl_account_get_notify_settings_gen.go#L105: return fmt.Errorf("can't encode account.getNotifySettings#12b3ad31 as nil")
tl_account_get_notify_settings_gen.go#L114: return fmt.Errorf("can't encode account.getNotifySettings#12b3ad31 as nil")
tl_account_get_notify_settings_gen.go#L117: return fmt.Errorf("unable to encode account.getNotifySettings#12b3ad31: field peer is nil")
tl_account_get_notify_settings_gen.go#L120: return fmt.Errorf("unable to encode account.getNotifySettings#12b3ad31: field peer: %w", err)
tl_account_get_notify_settings_gen.go#L133: return fmt.Errorf("can't decode account.getNotifySettings#12b3ad31 to nil")
tl_account_get_notify_settings_gen.go#L136: return fmt.Errorf("unable to decode account.getNotifySettings#12b3ad31: %w", err)
tl_account_get_notify_settings_gen.go#L144: return fmt.Errorf("can't decode account.getNotifySettings#12b3ad31 to nil")
tl_account_get_notify_settings_gen.go#L149: return fmt.Errorf("unable to decode account.getNotifySettings#12b3ad31: field peer: %w", err)
tl_account_get_password_gen.go#L88: return fmt.Errorf("can't encode account.getPassword#548a30f5 as nil")
tl_account_get_password_gen.go#L97: return fmt.Errorf("can't encode account.getPassword#548a30f5 as nil")
tl_account_get_password_gen.go#L105: return fmt.Errorf("can't decode account.getPassword#548a30f5 to nil")
tl_account_get_password_gen.go#L108: return fmt.Errorf("unable to decode account.getPassword#548a30f5: %w", err)
tl_account_get_password_gen.go#L116: return fmt.Errorf("can't decode account.getPassword#548a30f5 to nil")
tl_account_get_password_settings_gen.go#L112: return fmt.Errorf("can't encode account.getPasswordSettings#9cd4eaf9 as nil")
tl_account_get_password_settings_gen.go#L121: return fmt.Errorf("can't encode account.getPasswordSettings#9cd4eaf9 as nil")
tl_account_get_password_settings_gen.go#L124: return fmt.Errorf("unable to encode account.getPasswordSettings#9cd4eaf9: field password is nil")
tl_account_get_password_settings_gen.go#L127: return fmt.Errorf("unable to encode account.getPasswordSettings#9cd4eaf9: field password: %w", err)
tl_account_get_password_settings_gen.go#L145: return fmt.Errorf("can't decode account.getPasswordSettings#9cd4eaf9 to nil")
tl_account_get_password_settings_gen.go#L148: return fmt.Errorf("unable to decode account.getPasswordSettings#9cd4eaf9: %w", err)
tl_account_get_password_settings_gen.go#L156: return fmt.Errorf("can't decode account.getPasswordSettings#9cd4eaf9 to nil")
tl_account_get_password_settings_gen.go#L161: return fmt.Errorf("unable to decode account.getPasswordSettings#9cd4eaf9: field password: %w", err)
tl_account_get_privacy_gen.go#L105: return fmt.Errorf("can't encode account.getPrivacy#dadbc950 as nil")
tl_account_get_privacy_gen.go#L114: return fmt.Errorf("can't encode account.getPrivacy#dadbc950 as nil")
tl_account_get_privacy_gen.go#L117: return fmt.Errorf("unable to encode account.getPrivacy#dadbc950: field key is nil")
tl_account_get_privacy_gen.go#L120: return fmt.Errorf("unable to encode account.getPrivacy#dadbc950: field key: %w", err)
tl_account_get_privacy_gen.go#L133: return fmt.Errorf("can't decode account.getPrivacy#dadbc950 to nil")
tl_account_get_privacy_gen.go#L136: return fmt.Errorf("unable to decode account.getPrivacy#dadbc950: %w", err)
tl_account_get_privacy_gen.go#L144: return fmt.Errorf("can't decode account.getPrivacy#dadbc950 to nil")
tl_account_get_privacy_gen.go#L149: return fmt.Errorf("unable to decode account.getPrivacy#dadbc950: field key: %w", err)
tl_account_get_secure_value_gen.go#L109: return fmt.Errorf("can't encode account.getSecureValue#73665bc2 as nil")
tl_account_get_secure_value_gen.go#L118: return fmt.Errorf("can't encode account.getSecureValue#73665bc2 as nil")
tl_account_get_secure_value_gen.go#L123: return fmt.Errorf("unable to encode account.getSecureValue#73665bc2: field types element with index %d is nil", idx)
tl_account_get_secure_value_gen.go#L126: return fmt.Errorf("unable to encode account.getSecureValue#73665bc2: field types element with index %d: %w", idx, err)
tl_account_get_secure_value_gen.go#L145: return fmt.Errorf("can't decode account.getSecureValue#73665bc2 to nil")
tl_account_get_secure_value_gen.go#L148: return fmt.Errorf("unable to decode account.getSecureValue#73665bc2: %w", err)
tl_account_get_secure_value_gen.go#L156: return fmt.Errorf("can't decode account.getSecureValue#73665bc2 to nil")
tl_account_get_secure_value_gen.go#L161: return fmt.Errorf("unable to decode account.getSecureValue#73665bc2: field types: %w", err)
tl_account_get_secure_value_gen.go#L166: return fmt.Errorf("unable to decode account.getSecureValue#73665bc2: field types: %w", err)
tl_account_get_theme_gen.go#L127: return fmt.Errorf("can't encode account.getTheme#8d9d742b as nil")
tl_account_get_theme_gen.go#L136: return fmt.Errorf("can't encode account.getTheme#8d9d742b as nil")
tl_account_get_theme_gen.go#L140: return fmt.Errorf("unable to encode account.getTheme#8d9d742b: field theme is nil")
tl_account_get_theme_gen.go#L143: return fmt.Errorf("unable to encode account.getTheme#8d9d742b: field theme: %w", err)
tl_account_get_theme_gen.go#L167: return fmt.Errorf("can't decode account.getTheme#8d9d742b to nil")
tl_account_get_theme_gen.go#L170: return fmt.Errorf("unable to decode account.getTheme#8d9d742b: %w", err)
tl_account_get_theme_gen.go#L178: return fmt.Errorf("can't decode account.getTheme#8d9d742b to nil")
tl_account_get_theme_gen.go#L183: return fmt.Errorf("unable to decode account.getTheme#8d9d742b: field format: %w", err)
tl_account_get_theme_gen.go#L190: return fmt.Errorf("unable to decode account.getTheme#8d9d742b: field theme: %w", err)
tl_account_get_theme_gen.go#L197: return fmt.Errorf("unable to decode account.getTheme#8d9d742b: field document_id: %w", err)
tl_account_get_themes_gen.go#L119: return fmt.Errorf("can't encode account.getThemes#285946f8 as nil")
tl_account_get_themes_gen.go#L128: return fmt.Errorf("can't encode account.getThemes#285946f8 as nil")
tl_account_get_themes_gen.go#L148: return fmt.Errorf("can't decode account.getThemes#285946f8 to nil")
tl_account_get_themes_gen.go#L151: return fmt.Errorf("unable to decode account.getThemes#285946f8: %w", err)
tl_account_get_themes_gen.go#L159: return fmt.Errorf("can't decode account.getThemes#285946f8 to nil")
tl_account_get_themes_gen.go#L164: return fmt.Errorf("unable to decode account.getThemes#285946f8: field format: %w", err)
tl_account_get_themes_gen.go#L171: return fmt.Errorf("unable to decode account.getThemes#285946f8: field hash: %w", err)
tl_account_get_tmp_password_gen.go#L117: return fmt.Errorf("can't encode account.getTmpPassword#449e0b51 as nil")
tl_account_get_tmp_password_gen.go#L126: return fmt.Errorf("can't encode account.getTmpPassword#449e0b51 as nil")
tl_account_get_tmp_password_gen.go#L129: return fmt.Errorf("unable to encode account.getTmpPassword#449e0b51: field password is nil")
tl_account_get_tmp_password_gen.go#L132: return fmt.Errorf("unable to encode account.getTmpPassword#449e0b51: field password: %w", err)
tl_account_get_tmp_password_gen.go#L156: return fmt.Errorf("can't decode account.getTmpPassword#449e0b51 to nil")
tl_account_get_tmp_password_gen.go#L159: return fmt.Errorf("unable to decode account.getTmpPassword#449e0b51: %w", err)
tl_account_get_tmp_password_gen.go#L167: return fmt.Errorf("can't decode account.getTmpPassword#449e0b51 to nil")
tl_account_get_tmp_password_gen.go#L172: return fmt.Errorf("unable to decode account.getTmpPassword#449e0b51: field password: %w", err)
tl_account_get_tmp_password_gen.go#L179: return fmt.Errorf("unable to decode account.getTmpPassword#449e0b51: field period: %w", err)
tl_account_get_wall_paper_gen.go#L105: return fmt.Errorf("can't encode account.getWallPaper#fc8ddbea as nil")
tl_account_get_wall_paper_gen.go#L114: return fmt.Errorf("can't encode account.getWallPaper#fc8ddbea as nil")
tl_account_get_wall_paper_gen.go#L117: return fmt.Errorf("unable to encode account.getWallPaper#fc8ddbea: field wallpaper is nil")
tl_account_get_wall_paper_gen.go#L120: return fmt.Errorf("unable to encode account.getWallPaper#fc8ddbea: field wallpaper: %w", err)
tl_account_get_wall_paper_gen.go#L133: return fmt.Errorf("can't decode account.getWallPaper#fc8ddbea to nil")
tl_account_get_wall_paper_gen.go#L136: return fmt.Errorf("unable to decode account.getWallPaper#fc8ddbea: %w", err)
tl_account_get_wall_paper_gen.go#L144: return fmt.Errorf("can't decode account.getWallPaper#fc8ddbea to nil")
tl_account_get_wall_paper_gen.go#L149: return fmt.Errorf("unable to decode account.getWallPaper#fc8ddbea: field wallpaper: %w", err)
tl_account_get_wall_papers_gen.go#L108: return fmt.Errorf("can't encode account.getWallPapers#aabb1763 as nil")
tl_account_get_wall_papers_gen.go#L117: return fmt.Errorf("can't encode account.getWallPapers#aabb1763 as nil")
tl_account_get_wall_papers_gen.go#L131: return fmt.Errorf("can't decode account.getWallPapers#aabb1763 to nil")
tl_account_get_wall_papers_gen.go#L134: return fmt.Errorf("unable to decode account.getWallPapers#aabb1763: %w", err)
tl_account_get_wall_papers_gen.go#L142: return fmt.Errorf("can't decode account.getWallPapers#aabb1763 to nil")
tl_account_get_wall_papers_gen.go#L147: return fmt.Errorf("unable to decode account.getWallPapers#aabb1763: field hash: %w", err)
tl_account_get_web_authorizations_gen.go#L91: return fmt.Errorf("can't encode account.getWebAuthorizations#182e6d6f as nil")
tl_account_get_web_authorizations_gen.go#L100: return fmt.Errorf("can't encode account.getWebAuthorizations#182e6d6f as nil")
tl_account_get_web_authorizations_gen.go#L108: return fmt.Errorf("can't decode account.getWebAuthorizations#182e6d6f to nil")
tl_account_get_web_authorizations_gen.go#L111: return fmt.Errorf("unable to decode account.getWebAuthorizations#182e6d6f: %w", err)
tl_account_get_web_authorizations_gen.go#L119: return fmt.Errorf("can't decode account.getWebAuthorizations#182e6d6f to nil")
tl_account_init_takeout_session_gen.go#L200: return fmt.Errorf("can't encode account.initTakeoutSession#f05b4804 as nil")
tl_account_init_takeout_session_gen.go#L209: return fmt.Errorf("can't encode account.initTakeoutSession#f05b4804 as nil")
tl_account_init_takeout_session_gen.go#L233: return fmt.Errorf("unable to encode account.initTakeoutSession#f05b4804: field flags: %w", err)
tl_account_init_takeout_session_gen.go#L355: return fmt.Errorf("can't decode account.initTakeoutSession#f05b4804 to nil")
tl_account_init_takeout_session_gen.go#L358: return fmt.Errorf("unable to decode account.initTakeoutSession#f05b4804: %w", err)
tl_account_init_takeout_session_gen.go#L366: return fmt.Errorf("can't decode account.initTakeoutSession#f05b4804 to nil")
tl_account_init_takeout_session_gen.go#L370: return fmt.Errorf("unable to decode account.initTakeoutSession#f05b4804: field flags: %w", err)
tl_account_init_takeout_session_gen.go#L382: return fmt.Errorf("unable to decode account.initTakeoutSession#f05b4804: field file_max_size: %w", err)
tl_account_install_theme_gen.go#L148: return fmt.Errorf("can't encode account.installTheme#7ae43737 as nil")
tl_account_install_theme_gen.go#L157: return fmt.Errorf("can't encode account.installTheme#7ae43737 as nil")
tl_account_install_theme_gen.go#L169: return fmt.Errorf("unable to encode account.installTheme#7ae43737: field flags: %w", err)
tl_account_install_theme_gen.go#L176: return fmt.Errorf("unable to encode account.installTheme#7ae43737: field theme is nil")
tl_account_install_theme_gen.go#L179: return fmt.Errorf("unable to encode account.installTheme#7ae43737: field theme: %w", err)
tl_account_install_theme_gen.go#L234: return fmt.Errorf("can't decode account.installTheme#7ae43737 to nil")
tl_account_install_theme_gen.go#L237: return fmt.Errorf("unable to decode account.installTheme#7ae43737: %w", err)
tl_account_install_theme_gen.go#L245: return fmt.Errorf("can't decode account.installTheme#7ae43737 to nil")
tl_account_install_theme_gen.go#L249: return fmt.Errorf("unable to decode account.installTheme#7ae43737: field flags: %w", err)
tl_account_install_theme_gen.go#L256: return fmt.Errorf("unable to decode account.installTheme#7ae43737: field format: %w", err)
tl_account_install_theme_gen.go#L263: return fmt.Errorf("unable to decode account.installTheme#7ae43737: field theme: %w", err)
tl_account_install_wall_paper_gen.go#L116: return fmt.Errorf("can't encode account.installWallPaper#feed5769 as nil")
tl_account_install_wall_paper_gen.go#L125: return fmt.Errorf("can't encode account.installWallPaper#feed5769 as nil")
tl_account_install_wall_paper_gen.go#L128: return fmt.Errorf("unable to encode account.installWallPaper#feed5769: field wallpaper is nil")
tl_account_install_wall_paper_gen.go#L131: return fmt.Errorf("unable to encode account.installWallPaper#feed5769: field wallpaper: %w", err)
tl_account_install_wall_paper_gen.go#L134: return fmt.Errorf("unable to encode account.installWallPaper#feed5769: field settings: %w", err)
tl_account_install_wall_paper_gen.go#L152: return fmt.Errorf("can't decode account.installWallPaper#feed5769 to nil")
tl_account_install_wall_paper_gen.go#L155: return fmt.Errorf("unable to decode account.installWallPaper#feed5769: %w", err)
tl_account_install_wall_paper_gen.go#L163: return fmt.Errorf("can't decode account.installWallPaper#feed5769 to nil")
tl_account_install_wall_paper_gen.go#L168: return fmt.Errorf("unable to decode account.installWallPaper#feed5769: field wallpaper: %w", err)
tl_account_install_wall_paper_gen.go#L174: return fmt.Errorf("unable to decode account.installWallPaper#feed5769: field settings: %w", err)
tl_account_password_gen.go#L280: return fmt.Errorf("can't encode account.password#ad2641f8 as nil")
tl_account_password_gen.go#L289: return fmt.Errorf("can't encode account.password#ad2641f8 as nil")
tl_account_password_gen.go#L316: return fmt.Errorf("unable to encode account.password#ad2641f8: field flags: %w", err)
tl_account_password_gen.go#L320: return fmt.Errorf("unable to encode account.password#ad2641f8: field current_algo is nil")
tl_account_password_gen.go#L323: return fmt.Errorf("unable to encode account.password#ad2641f8: field current_algo: %w", err)
tl_account_password_gen.go#L339: return fmt.Errorf("unable to encode account.password#ad2641f8: field new_algo is nil")
tl_account_password_gen.go#L342: return fmt.Errorf("unable to encode account.password#ad2641f8: field new_algo: %w", err)
tl_account_password_gen.go#L345: return fmt.Errorf("unable to encode account.password#ad2641f8: field new_secure_algo is nil")
tl_account_password_gen.go#L348: return fmt.Errorf("unable to encode account.password#ad2641f8: field new_secure_algo: %w", err)
tl_account_password_gen.go#L495: return fmt.Errorf("can't decode account.password#ad2641f8 to nil")
tl_account_password_gen.go#L498: return fmt.Errorf("unable to decode account.password#ad2641f8: %w", err)
tl_account_password_gen.go#L506: return fmt.Errorf("can't decode account.password#ad2641f8 to nil")
tl_account_password_gen.go#L510: return fmt.Errorf("unable to decode account.password#ad2641f8: field flags: %w", err)
tl_account_password_gen.go#L519: return fmt.Errorf("unable to decode account.password#ad2641f8: field current_algo: %w", err)
tl_account_password_gen.go#L526: return fmt.Errorf("unable to decode account.password#ad2641f8: field srp_B: %w", err)
tl_account_password_gen.go#L533: return fmt.Errorf("unable to decode account.password#ad2641f8: field srp_id: %w", err)
tl_account_password_gen.go#L540: return fmt.Errorf("unable to decode account.password#ad2641f8: field hint: %w", err)
tl_account_password_gen.go#L547: return fmt.Errorf("unable to decode account.password#ad2641f8: field email_unconfirmed_pattern: %w", err)
tl_account_password_gen.go#L554: return fmt.Errorf("unable to decode account.password#ad2641f8: field new_algo: %w", err)
tl_account_password_gen.go#L561: return fmt.Errorf("unable to decode account.password#ad2641f8: field new_secure_algo: %w", err)
tl_account_password_gen.go#L568: return fmt.Errorf("unable to decode account.password#ad2641f8: field secure_random: %w", err)
tl_account_password_input_settings_gen.go#L196: return fmt.Errorf("can't encode account.passwordInputSettings#c23727c9 as nil")
tl_account_password_input_settings_gen.go#L205: return fmt.Errorf("can't encode account.passwordInputSettings#c23727c9 as nil")
tl_account_password_input_settings_gen.go#L223: return fmt.Errorf("unable to encode account.passwordInputSettings#c23727c9: field flags: %w", err)
tl_account_password_input_settings_gen.go#L227: return fmt.Errorf("unable to encode account.passwordInputSettings#c23727c9: field new_algo is nil")
tl_account_password_input_settings_gen.go#L230: return fmt.Errorf("unable to encode account.passwordInputSettings#c23727c9: field new_algo: %w", err)
tl_account_password_input_settings_gen.go#L244: return fmt.Errorf("unable to encode account.passwordInputSettings#c23727c9: field new_secure_settings: %w", err)
tl_account_password_input_settings_gen.go#L328: return fmt.Errorf("can't decode account.passwordInputSettings#c23727c9 to nil")
tl_account_password_input_settings_gen.go#L331: return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: %w", err)
tl_account_password_input_settings_gen.go#L339: return fmt.Errorf("can't decode account.passwordInputSettings#c23727c9 to nil")
tl_account_password_input_settings_gen.go#L343: return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field flags: %w", err)
tl_account_password_input_settings_gen.go#L349: return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field new_algo: %w", err)
tl_account_password_input_settings_gen.go#L356: return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field new_password_hash: %w", err)
tl_account_password_input_settings_gen.go#L363: return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field hint: %w", err)
tl_account_password_input_settings_gen.go#L370: return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field email: %w", err)
tl_account_password_input_settings_gen.go#L376: return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field new_secure_settings: %w", err)
tl_account_password_settings_gen.go#L146: return fmt.Errorf("can't encode account.passwordSettings#9a5c33e5 as nil")
tl_account_password_settings_gen.go#L155: return fmt.Errorf("can't encode account.passwordSettings#9a5c33e5 as nil")
tl_account_password_settings_gen.go#L164: return fmt.Errorf("unable to encode account.passwordSettings#9a5c33e5: field flags: %w", err)
tl_account_password_settings_gen.go#L171: return fmt.Errorf("unable to encode account.passwordSettings#9a5c33e5: field secure_settings: %w", err)
tl_account_password_settings_gen.go#L210: return fmt.Errorf("can't decode account.passwordSettings#9a5c33e5 to nil")
tl_account_password_settings_gen.go#L213: return fmt.Errorf("unable to decode account.passwordSettings#9a5c33e5: %w", err)
tl_account_password_settings_gen.go#L221: return fmt.Errorf("can't decode account.passwordSettings#9a5c33e5 to nil")
tl_account_password_settings_gen.go#L225: return fmt.Errorf("unable to decode account.passwordSettings#9a5c33e5: field flags: %w", err)
tl_account_password_settings_gen.go#L231: return fmt.Errorf("unable to decode account.passwordSettings#9a5c33e5: field email: %w", err)
tl_account_password_settings_gen.go#L237: return fmt.Errorf("unable to decode account.passwordSettings#9a5c33e5: field secure_settings: %w", err)
tl_account_privacy_rules_gen.go#L127: return fmt.Errorf("can't encode account.privacyRules#50a04e45 as nil")
tl_account_privacy_rules_gen.go#L136: return fmt.Errorf("can't encode account.privacyRules#50a04e45 as nil")
tl_account_privacy_rules_gen.go#L141: return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field rules element with index %d is nil", idx)
tl_account_privacy_rules_gen.go#L144: return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field rules element with index %d: %w", idx, err)
tl_account_privacy_rules_gen.go#L150: return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field chats element with index %d is nil", idx)
tl_account_privacy_rules_gen.go#L153: return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field chats element with index %d: %w", idx, err)
tl_account_privacy_rules_gen.go#L159: return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field users element with index %d is nil", idx)
tl_account_privacy_rules_gen.go#L162: return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field users element with index %d: %w", idx, err)
tl_account_privacy_rules_gen.go#L201: return fmt.Errorf("can't decode account.privacyRules#50a04e45 to nil")
tl_account_privacy_rules_gen.go#L204: return fmt.Errorf("unable to decode account.privacyRules#50a04e45: %w", err)
tl_account_privacy_rules_gen.go#L212: return fmt.Errorf("can't decode account.privacyRules#50a04e45 to nil")
tl_account_privacy_rules_gen.go#L217: return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field rules: %w", err)
tl_account_privacy_rules_gen.go#L222: return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field rules: %w", err)
tl_account_privacy_rules_gen.go#L230: return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field chats: %w", err)
tl_account_privacy_rules_gen.go#L235: return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field chats: %w", err)
tl_account_privacy_rules_gen.go#L243: return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field users: %w", err)
tl_account_privacy_rules_gen.go#L248: return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field users: %w", err)
tl_account_register_device_gen.go#L185: return fmt.Errorf("can't encode account.registerDevice#68976c6f as nil")
tl_account_register_device_gen.go#L194: return fmt.Errorf("can't encode account.registerDevice#68976c6f as nil")
tl_account_register_device_gen.go#L200: return fmt.Errorf("unable to encode account.registerDevice#68976c6f: field flags: %w", err)
tl_account_register_device_gen.go#L257: return fmt.Errorf("can't decode account.registerDevice#68976c6f to nil")
tl_account_register_device_gen.go#L260: return fmt.Errorf("unable to decode account.registerDevice#68976c6f: %w", err)
tl_account_register_device_gen.go#L268: return fmt.Errorf("can't decode account.registerDevice#68976c6f to nil")
tl_account_register_device_gen.go#L272: return fmt.Errorf("unable to decode account.registerDevice#68976c6f: field flags: %w", err)
tl_account_register_device_gen.go#L279: return fmt.Errorf("unable to decode account.registerDevice#68976c6f: field token_type: %w", err)
tl_account_register_device_gen.go#L286: return fmt.Errorf("unable to decode account.registerDevice#68976c6f: field token: %w", err)
tl_account_register_device_gen.go#L293: return fmt.Errorf("unable to decode account.registerDevice#68976c6f: field app_sandbox: %w", err)
tl_account_register_device_gen.go#L300: return fmt.Errorf("unable to decode account.registerDevice#68976c6f: field secret: %w", err)
tl_account_register_device_gen.go#L307: return fmt.Errorf("unable to decode account.registerDevice#68976c6f: field other_uids: %w", err)
tl_account_register_device_gen.go#L312: return fmt.Errorf("unable to decode account.registerDevice#68976c6f: field other_uids: %w", err)
tl_account_report_peer_gen.go#L127: return fmt.Errorf("can't encode account.reportPeer#c5ba3d86 as nil")
tl_account_report_peer_gen.go#L136: return fmt.Errorf("can't encode account.reportPeer#c5ba3d86 as nil")
tl_account_report_peer_gen.go#L139: return fmt.Errorf("unable to encode account.reportPeer#c5ba3d86: field peer is nil")
tl_account_report_peer_gen.go#L142: return fmt.Errorf("unable to encode account.reportPeer#c5ba3d86: field peer: %w", err)
tl_account_report_peer_gen.go#L145: return fmt.Errorf("unable to encode account.reportPeer#c5ba3d86: field reason is nil")
tl_account_report_peer_gen.go#L148: return fmt.Errorf("unable to encode account.reportPeer#c5ba3d86: field reason: %w", err)
tl_account_report_peer_gen.go#L172: return fmt.Errorf("can't decode account.reportPeer#c5ba3d86 to nil")
tl_account_report_peer_gen.go#L175: return fmt.Errorf("unable to decode account.reportPeer#c5ba3d86: %w", err)
tl_account_report_peer_gen.go#L183: return fmt.Errorf("can't decode account.reportPeer#c5ba3d86 to nil")
tl_account_report_peer_gen.go#L188: return fmt.Errorf("unable to decode account.reportPeer#c5ba3d86: field peer: %w", err)
tl_account_report_peer_gen.go#L195: return fmt.Errorf("unable to decode account.reportPeer#c5ba3d86: field reason: %w", err)
tl_account_report_peer_gen.go#L202: return fmt.Errorf("unable to decode account.reportPeer#c5ba3d86: field message: %w", err)
tl_account_report_profile_photo_gen.go#L137: return fmt.Errorf("can't encode account.reportProfilePhoto#fa8cc6f5 as nil")
tl_account_report_profile_photo_gen.go#L146: return fmt.Errorf("can't encode account.reportProfilePhoto#fa8cc6f5 as nil")
tl_account_report_profile_photo_gen.go#L149: return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field peer is nil")
tl_account_report_profile_photo_gen.go#L152: return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field peer: %w", err)
tl_account_report_profile_photo_gen.go#L155: return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field photo_id is nil")
tl_account_report_profile_photo_gen.go#L158: return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field photo_id: %w", err)
tl_account_report_profile_photo_gen.go#L161: return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field reason is nil")
tl_account_report_profile_photo_gen.go#L164: return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field reason: %w", err)
tl_account_report_profile_photo_gen.go#L198: return fmt.Errorf("can't decode account.reportProfilePhoto#fa8cc6f5 to nil")
tl_account_report_profile_photo_gen.go#L201: return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: %w", err)
tl_account_report_profile_photo_gen.go#L209: return fmt.Errorf("can't decode account.reportProfilePhoto#fa8cc6f5 to nil")
tl_account_report_profile_photo_gen.go#L214: return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: field peer: %w", err)
tl_account_report_profile_photo_gen.go#L221: return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: field photo_id: %w", err)
tl_account_report_profile_photo_gen.go#L228: return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: field reason: %w", err)
tl_account_report_profile_photo_gen.go#L235: return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: field message: %w", err)
tl_account_resend_password_email_gen.go#L91: return fmt.Errorf("can't encode account.resendPasswordEmail#7a7f2a15 as nil")
tl_account_resend_password_email_gen.go#L100: return fmt.Errorf("can't encode account.resendPasswordEmail#7a7f2a15 as nil")
tl_account_resend_password_email_gen.go#L108: return fmt.Errorf("can't decode account.resendPasswordEmail#7a7f2a15 to nil")
tl_account_resend_password_email_gen.go#L111: return fmt.Errorf("unable to decode account.resendPasswordEmail#7a7f2a15: %w", err)
tl_account_resend_password_email_gen.go#L119: return fmt.Errorf("can't decode account.resendPasswordEmail#7a7f2a15 to nil")
tl_account_reset_authorization_gen.go#L108: return fmt.Errorf("can't encode account.resetAuthorization#df77f3bc as nil")
tl_account_reset_authorization_gen.go#L117: return fmt.Errorf("can't encode account.resetAuthorization#df77f3bc as nil")
tl_account_reset_authorization_gen.go#L131: return fmt.Errorf("can't decode account.resetAuthorization#df77f3bc to nil")
tl_account_reset_authorization_gen.go#L134: return fmt.Errorf("unable to decode account.resetAuthorization#df77f3bc: %w", err)
tl_account_reset_authorization_gen.go#L142: return fmt.Errorf("can't decode account.resetAuthorization#df77f3bc to nil")
tl_account_reset_authorization_gen.go#L147: return fmt.Errorf("unable to decode account.resetAuthorization#df77f3bc: field hash: %w", err)
tl_account_reset_notify_settings_gen.go#L88: return fmt.Errorf("can't encode account.resetNotifySettings#db7e1747 as nil")
tl_account_reset_notify_settings_gen.go#L97: return fmt.Errorf("can't encode account.resetNotifySettings#db7e1747 as nil")
tl_account_reset_notify_settings_gen.go#L105: return fmt.Errorf("can't decode account.resetNotifySettings#db7e1747 to nil")
tl_account_reset_notify_settings_gen.go#L108: return fmt.Errorf("unable to decode account.resetNotifySettings#db7e1747: %w", err)
tl_account_reset_notify_settings_gen.go#L116: return fmt.Errorf("can't decode account.resetNotifySettings#db7e1747 to nil")
tl_account_reset_wall_papers_gen.go#L88: return fmt.Errorf("can't encode account.resetWallPapers#bb3b9804 as nil")
tl_account_reset_wall_papers_gen.go#L97: return fmt.Errorf("can't encode account.resetWallPapers#bb3b9804 as nil")
tl_account_reset_wall_papers_gen.go#L105: return fmt.Errorf("can't decode account.resetWallPapers#bb3b9804 to nil")
tl_account_reset_wall_papers_gen.go#L108: return fmt.Errorf("unable to decode account.resetWallPapers#bb3b9804: %w", err)
tl_account_reset_wall_papers_gen.go#L116: return fmt.Errorf("can't decode account.resetWallPapers#bb3b9804 to nil")
tl_account_reset_web_authorization_gen.go#L111: return fmt.Errorf("can't encode account.resetWebAuthorization#2d01b9ef as nil")
tl_account_reset_web_authorization_gen.go#L120: return fmt.Errorf("can't encode account.resetWebAuthorization#2d01b9ef as nil")
tl_account_reset_web_authorization_gen.go#L134: return fmt.Errorf("can't decode account.resetWebAuthorization#2d01b9ef to nil")
tl_account_reset_web_authorization_gen.go#L137: return fmt.Errorf("unable to decode account.resetWebAuthorization#2d01b9ef: %w", err)
tl_account_reset_web_authorization_gen.go#L145: return fmt.Errorf("can't decode account.resetWebAuthorization#2d01b9ef to nil")
tl_account_reset_web_authorization_gen.go#L150: return fmt.Errorf("unable to decode account.resetWebAuthorization#2d01b9ef: field hash: %w", err)
tl_account_reset_web_authorizations_gen.go#L91: return fmt.Errorf("can't encode account.resetWebAuthorizations#682d2594 as nil")
tl_account_reset_web_authorizations_gen.go#L100: return fmt.Errorf("can't encode account.resetWebAuthorizations#682d2594 as nil")
tl_account_reset_web_authorizations_gen.go#L108: return fmt.Errorf("can't decode account.resetWebAuthorizations#682d2594 to nil")
tl_account_reset_web_authorizations_gen.go#L111: return fmt.Errorf("unable to decode account.resetWebAuthorizations#682d2594: %w", err)
tl_account_reset_web_authorizations_gen.go#L119: return fmt.Errorf("can't decode account.resetWebAuthorizations#682d2594 to nil")
tl_account_save_auto_download_settings_gen.go#L137: return fmt.Errorf("can't encode account.saveAutoDownloadSettings#76f36233 as nil")
tl_account_save_auto_download_settings_gen.go#L146: return fmt.Errorf("can't encode account.saveAutoDownloadSettings#76f36233 as nil")
tl_account_save_auto_download_settings_gen.go#L155: return fmt.Errorf("unable to encode account.saveAutoDownloadSettings#76f36233: field flags: %w", err)
tl_account_save_auto_download_settings_gen.go#L158: return fmt.Errorf("unable to encode account.saveAutoDownloadSettings#76f36233: field settings: %w", err)
tl_account_save_auto_download_settings_gen.go#L203: return fmt.Errorf("can't decode account.saveAutoDownloadSettings#76f36233 to nil")
tl_account_save_auto_download_settings_gen.go#L206: return fmt.Errorf("unable to decode account.saveAutoDownloadSettings#76f36233: %w", err)
tl_account_save_auto_download_settings_gen.go#L214: return fmt.Errorf("can't decode account.saveAutoDownloadSettings#76f36233 to nil")
tl_account_save_auto_download_settings_gen.go#L218: return fmt.Errorf("unable to decode account.saveAutoDownloadSettings#76f36233: field flags: %w", err)
tl_account_save_auto_download_settings_gen.go#L225: return fmt.Errorf("unable to decode account.saveAutoDownloadSettings#76f36233: field settings: %w", err)
tl_account_save_secure_value_gen.go#L126: return fmt.Errorf("can't encode account.saveSecureValue#899fe31d as nil")
tl_account_save_secure_value_gen.go#L135: return fmt.Errorf("can't encode account.saveSecureValue#899fe31d as nil")
tl_account_save_secure_value_gen.go#L138: return fmt.Errorf("unable to encode account.saveSecureValue#899fe31d: field value: %w", err)
tl_account_save_secure_value_gen.go#L157: return fmt.Errorf("can't decode account.saveSecureValue#899fe31d to nil")
tl_account_save_secure_value_gen.go#L160: return fmt.Errorf("unable to decode account.saveSecureValue#899fe31d: %w", err)
tl_account_save_secure_value_gen.go#L168: return fmt.Errorf("can't decode account.saveSecureValue#899fe31d to nil")
tl_account_save_secure_value_gen.go#L172: return fmt.Errorf("unable to decode account.saveSecureValue#899fe31d: field value: %w", err)
tl_account_save_secure_value_gen.go#L178: return fmt.Errorf("unable to decode account.saveSecureValue#899fe31d: field secure_secret_id: %w", err)
tl_account_save_theme_gen.go#L116: return fmt.Errorf("can't encode account.saveTheme#f257106c as nil")
tl_account_save_theme_gen.go#L125: return fmt.Errorf("can't encode account.saveTheme#f257106c as nil")
tl_account_save_theme_gen.go#L128: return fmt.Errorf("unable to encode account.saveTheme#f257106c: field theme is nil")
tl_account_save_theme_gen.go#L131: return fmt.Errorf("unable to encode account.saveTheme#f257106c: field theme: %w", err)
tl_account_save_theme_gen.go#L150: return fmt.Errorf("can't decode account.saveTheme#f257106c to nil")
tl_account_save_theme_gen.go#L153: return fmt.Errorf("unable to decode account.saveTheme#f257106c: %w", err)
tl_account_save_theme_gen.go#L161: return fmt.Errorf("can't decode account.saveTheme#f257106c to nil")
tl_account_save_theme_gen.go#L166: return fmt.Errorf("unable to decode account.saveTheme#f257106c: field theme: %w", err)
tl_account_save_theme_gen.go#L173: return fmt.Errorf("unable to decode account.saveTheme#f257106c: field unsave: %w", err)
tl_account_save_wall_paper_gen.go#L127: return fmt.Errorf("can't encode account.saveWallPaper#6c5a5b37 as nil")
tl_account_save_wall_paper_gen.go#L136: return fmt.Errorf("can't encode account.saveWallPaper#6c5a5b37 as nil")
tl_account_save_wall_paper_gen.go#L139: return fmt.Errorf("unable to encode account.saveWallPaper#6c5a5b37: field wallpaper is nil")
tl_account_save_wall_paper_gen.go#L142: return fmt.Errorf("unable to encode account.saveWallPaper#6c5a5b37: field wallpaper: %w", err)
tl_account_save_wall_paper_gen.go#L146: return fmt.Errorf("unable to encode account.saveWallPaper#6c5a5b37: field settings: %w", err)
tl_account_save_wall_paper_gen.go#L169: return fmt.Errorf("can't decode account.saveWallPaper#6c5a5b37 to nil")
tl_account_save_wall_paper_gen.go#L172: return fmt.Errorf("unable to decode account.saveWallPaper#6c5a5b37: %w", err)
tl_account_save_wall_paper_gen.go#L180: return fmt.Errorf("can't decode account.saveWallPaper#6c5a5b37 to nil")
tl_account_save_wall_paper_gen.go#L185: return fmt.Errorf("unable to decode account.saveWallPaper#6c5a5b37: field wallpaper: %w", err)
tl_account_save_wall_paper_gen.go#L192: return fmt.Errorf("unable to decode account.saveWallPaper#6c5a5b37: field unsave: %w", err)
tl_account_save_wall_paper_gen.go#L198: return fmt.Errorf("unable to decode account.saveWallPaper#6c5a5b37: field settings: %w", err)
tl_account_send_change_phone_code_gen.go#L116: return fmt.Errorf("can't encode account.sendChangePhoneCode#82574ae5 as nil")
tl_account_send_change_phone_code_gen.go#L125: return fmt.Errorf("can't encode account.sendChangePhoneCode#82574ae5 as nil")
tl_account_send_change_phone_code_gen.go#L129: return fmt.Errorf("unable to encode account.sendChangePhoneCode#82574ae5: field settings: %w", err)
tl_account_send_change_phone_code_gen.go#L147: return fmt.Errorf("can't decode account.sendChangePhoneCode#82574ae5 to nil")
tl_account_send_change_phone_code_gen.go#L150: return fmt.Errorf("unable to decode account.sendChangePhoneCode#82574ae5: %w", err)
tl_account_send_change_phone_code_gen.go#L158: return fmt.Errorf("can't decode account.sendChangePhoneCode#82574ae5 to nil")
tl_account_send_change_phone_code_gen.go#L163: return fmt.Errorf("unable to decode account.sendChangePhoneCode#82574ae5: field phone_number: %w", err)
tl_account_send_change_phone_code_gen.go#L169: return fmt.Errorf("unable to decode account.sendChangePhoneCode#82574ae5: field settings: %w", err)
tl_account_send_confirm_phone_code_gen.go#L122: return fmt.Errorf("can't encode account.sendConfirmPhoneCode#1b3faa88 as nil")
tl_account_send_confirm_phone_code_gen.go#L131: return fmt.Errorf("can't encode account.sendConfirmPhoneCode#1b3faa88 as nil")
tl_account_send_confirm_phone_code_gen.go#L135: return fmt.Errorf("unable to encode account.sendConfirmPhoneCode#1b3faa88: field settings: %w", err)
tl_account_send_confirm_phone_code_gen.go#L153: return fmt.Errorf("can't decode account.sendConfirmPhoneCode#1b3faa88 to nil")
tl_account_send_confirm_phone_code_gen.go#L156: return fmt.Errorf("unable to decode account.sendConfirmPhoneCode#1b3faa88: %w", err)
tl_account_send_confirm_phone_code_gen.go#L164: return fmt.Errorf("can't decode account.sendConfirmPhoneCode#1b3faa88 to nil")
tl_account_send_confirm_phone_code_gen.go#L169: return fmt.Errorf("unable to decode account.sendConfirmPhoneCode#1b3faa88: field hash: %w", err)
tl_account_send_confirm_phone_code_gen.go#L175: return fmt.Errorf("unable to decode account.sendConfirmPhoneCode#1b3faa88: field settings: %w", err)
tl_account_send_verify_email_code_gen.go#L108: return fmt.Errorf("can't encode account.sendVerifyEmailCode#7011509f as nil")
tl_account_send_verify_email_code_gen.go#L117: return fmt.Errorf("can't encode account.sendVerifyEmailCode#7011509f as nil")
tl_account_send_verify_email_code_gen.go#L131: return fmt.Errorf("can't decode account.sendVerifyEmailCode#7011509f to nil")
tl_account_send_verify_email_code_gen.go#L134: return fmt.Errorf("unable to decode account.sendVerifyEmailCode#7011509f: %w", err)
tl_account_send_verify_email_code_gen.go#L142: return fmt.Errorf("can't decode account.sendVerifyEmailCode#7011509f to nil")
tl_account_send_verify_email_code_gen.go#L147: return fmt.Errorf("unable to decode account.sendVerifyEmailCode#7011509f: field email: %w", err)
tl_account_send_verify_phone_code_gen.go#L119: return fmt.Errorf("can't encode account.sendVerifyPhoneCode#a5a356f9 as nil")
tl_account_send_verify_phone_code_gen.go#L128: return fmt.Errorf("can't encode account.sendVerifyPhoneCode#a5a356f9 as nil")
tl_account_send_verify_phone_code_gen.go#L132: return fmt.Errorf("unable to encode account.sendVerifyPhoneCode#a5a356f9: field settings: %w", err)
tl_account_send_verify_phone_code_gen.go#L150: return fmt.Errorf("can't decode account.sendVerifyPhoneCode#a5a356f9 to nil")
tl_account_send_verify_phone_code_gen.go#L153: return fmt.Errorf("unable to decode account.sendVerifyPhoneCode#a5a356f9: %w", err)
tl_account_send_verify_phone_code_gen.go#L161: return fmt.Errorf("can't decode account.sendVerifyPhoneCode#a5a356f9 to nil")
tl_account_send_verify_phone_code_gen.go#L166: return fmt.Errorf("unable to decode account.sendVerifyPhoneCode#a5a356f9: field phone_number: %w", err)
tl_account_send_verify_phone_code_gen.go#L172: return fmt.Errorf("unable to decode account.sendVerifyPhoneCode#a5a356f9: field settings: %w", err)
tl_account_sent_email_code_gen.go#L119: return fmt.Errorf("can't encode account.sentEmailCode#811f854f as nil")
tl_account_sent_email_code_gen.go#L128: return fmt.Errorf("can't encode account.sentEmailCode#811f854f as nil")
tl_account_sent_email_code_gen.go#L148: return fmt.Errorf("can't decode account.sentEmailCode#811f854f to nil")
tl_account_sent_email_code_gen.go#L151: return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: %w", err)
tl_account_sent_email_code_gen.go#L159: return fmt.Errorf("can't decode account.sentEmailCode#811f854f to nil")
tl_account_sent_email_code_gen.go#L164: return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: field email_pattern: %w", err)
tl_account_sent_email_code_gen.go#L171: return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: field length: %w", err)
tl_account_set_account_ttl_gen.go#L105: return fmt.Errorf("can't encode account.setAccountTTL#2442485e as nil")
tl_account_set_account_ttl_gen.go#L114: return fmt.Errorf("can't encode account.setAccountTTL#2442485e as nil")
tl_account_set_account_ttl_gen.go#L117: return fmt.Errorf("unable to encode account.setAccountTTL#2442485e: field ttl: %w", err)
tl_account_set_account_ttl_gen.go#L130: return fmt.Errorf("can't decode account.setAccountTTL#2442485e to nil")
tl_account_set_account_ttl_gen.go#L133: return fmt.Errorf("unable to decode account.setAccountTTL#2442485e: %w", err)
tl_account_set_account_ttl_gen.go#L141: return fmt.Errorf("can't decode account.setAccountTTL#2442485e to nil")
tl_account_set_account_ttl_gen.go#L145: return fmt.Errorf("unable to decode account.setAccountTTL#2442485e: field ttl: %w", err)
tl_account_set_contact_sign_up_notification_gen.go#L105: return fmt.Errorf("can't encode account.setContactSignUpNotification#cff43f61 as nil")
tl_account_set_contact_sign_up_notification_gen.go#L114: return fmt.Errorf("can't encode account.setContactSignUpNotification#cff43f61 as nil")
tl_account_set_contact_sign_up_notification_gen.go#L128: return fmt.Errorf("can't decode account.setContactSignUpNotification#cff43f61 to nil")
tl_account_set_contact_sign_up_notification_gen.go#L131: return fmt.Errorf("unable to decode account.setContactSignUpNotification#cff43f61: %w", err)
tl_account_set_contact_sign_up_notification_gen.go#L139: return fmt.Errorf("can't decode account.setContactSignUpNotification#cff43f61 to nil")
tl_account_set_contact_sign_up_notification_gen.go#L144: return fmt.Errorf("unable to decode account.setContactSignUpNotification#cff43f61: field silent: %w", err)
tl_account_set_content_settings_gen.go#L114: return fmt.Errorf("can't encode account.setContentSettings#b574b16b as nil")
tl_account_set_content_settings_gen.go#L123: return fmt.Errorf("can't encode account.setContentSettings#b574b16b as nil")
tl_account_set_content_settings_gen.go#L129: return fmt.Errorf("unable to encode account.setContentSettings#b574b16b: field flags: %w", err)
tl_account_set_content_settings_gen.go#L153: return fmt.Errorf("can't decode account.setContentSettings#b574b16b to nil")
tl_account_set_content_settings_gen.go#L156: return fmt.Errorf("unable to decode account.setContentSettings#b574b16b: %w", err)
tl_account_set_content_settings_gen.go#L164: return fmt.Errorf("can't decode account.setContentSettings#b574b16b to nil")
tl_account_set_content_settings_gen.go#L168: return fmt.Errorf("unable to decode account.setContentSettings#b574b16b: field flags: %w", err)
tl_account_set_global_privacy_settings_gen.go#L105: return fmt.Errorf("can't encode account.setGlobalPrivacySettings#1edaaac2 as nil")
tl_account_set_global_privacy_settings_gen.go#L114: return fmt.Errorf("can't encode account.setGlobalPrivacySettings#1edaaac2 as nil")
tl_account_set_global_privacy_settings_gen.go#L117: return fmt.Errorf("unable to encode account.setGlobalPrivacySettings#1edaaac2: field settings: %w", err)
tl_account_set_global_privacy_settings_gen.go#L130: return fmt.Errorf("can't decode account.setGlobalPrivacySettings#1edaaac2 to nil")
tl_account_set_global_privacy_settings_gen.go#L133: return fmt.Errorf("unable to decode account.setGlobalPrivacySettings#1edaaac2: %w", err)
tl_account_set_global_privacy_settings_gen.go#L141: return fmt.Errorf("can't decode account.setGlobalPrivacySettings#1edaaac2 to nil")
tl_account_set_global_privacy_settings_gen.go#L145: return fmt.Errorf("unable to decode account.setGlobalPrivacySettings#1edaaac2: field settings: %w", err)
tl_account_set_privacy_gen.go#L116: return fmt.Errorf("can't encode account.setPrivacy#c9f81ce8 as nil")
tl_account_set_privacy_gen.go#L125: return fmt.Errorf("can't encode account.setPrivacy#c9f81ce8 as nil")
tl_account_set_privacy_gen.go#L128: return fmt.Errorf("unable to encode account.setPrivacy#c9f81ce8: field key is nil")
tl_account_set_privacy_gen.go#L131: return fmt.Errorf("unable to encode account.setPrivacy#c9f81ce8: field key: %w", err)
tl_account_set_privacy_gen.go#L136: return fmt.Errorf("unable to encode account.setPrivacy#c9f81ce8: field rules element with index %d is nil", idx)
tl_account_set_privacy_gen.go#L139: return fmt.Errorf("unable to encode account.setPrivacy#c9f81ce8: field rules element with index %d: %w", idx, err)
tl_account_set_privacy_gen.go#L163: return fmt.Errorf("can't decode account.setPrivacy#c9f81ce8 to nil")
tl_account_set_privacy_gen.go#L166: return fmt.Errorf("unable to decode account.setPrivacy#c9f81ce8: %w", err)
tl_account_set_privacy_gen.go#L174: return fmt.Errorf("can't decode account.setPrivacy#c9f81ce8 to nil")
tl_account_set_privacy_gen.go#L179: return fmt.Errorf("unable to decode account.setPrivacy#c9f81ce8: field key: %w", err)
tl_account_set_privacy_gen.go#L186: return fmt.Errorf("unable to decode account.setPrivacy#c9f81ce8: field rules: %w", err)
tl_account_set_privacy_gen.go#L191: return fmt.Errorf("unable to decode account.setPrivacy#c9f81ce8: field rules: %w", err)
tl_account_takeout_gen.go#L105: return fmt.Errorf("can't encode account.takeout#4dba4501 as nil")
tl_account_takeout_gen.go#L114: return fmt.Errorf("can't encode account.takeout#4dba4501 as nil")
tl_account_takeout_gen.go#L128: return fmt.Errorf("can't decode account.takeout#4dba4501 to nil")
tl_account_takeout_gen.go#L131: return fmt.Errorf("unable to decode account.takeout#4dba4501: %w", err)
tl_account_takeout_gen.go#L139: return fmt.Errorf("can't decode account.takeout#4dba4501 to nil")
tl_account_takeout_gen.go#L144: return fmt.Errorf("unable to decode account.takeout#4dba4501: field id: %w", err)
tl_account_themes_gen.go#L88: return fmt.Errorf("can't encode account.themesNotModified#f41eb622 as nil")
tl_account_themes_gen.go#L97: return fmt.Errorf("can't encode account.themesNotModified#f41eb622 as nil")
tl_account_themes_gen.go#L105: return fmt.Errorf("can't decode account.themesNotModified#f41eb622 to nil")
tl_account_themes_gen.go#L108: return fmt.Errorf("unable to decode account.themesNotModified#f41eb622: %w", err)
tl_account_themes_gen.go#L116: return fmt.Errorf("can't decode account.themesNotModified#f41eb622 to nil")
tl_account_themes_gen.go#L221: return fmt.Errorf("can't encode account.themes#7f676421 as nil")
tl_account_themes_gen.go#L230: return fmt.Errorf("can't encode account.themes#7f676421 as nil")
tl_account_themes_gen.go#L236: return fmt.Errorf("unable to encode account.themes#7f676421: field themes element with index %d: %w", idx, err)
tl_account_themes_gen.go#L255: return fmt.Errorf("can't decode account.themes#7f676421 to nil")
tl_account_themes_gen.go#L258: return fmt.Errorf("unable to decode account.themes#7f676421: %w", err)
tl_account_themes_gen.go#L266: return fmt.Errorf("can't decode account.themes#7f676421 to nil")
tl_account_themes_gen.go#L271: return fmt.Errorf("unable to decode account.themes#7f676421: field hash: %w", err)
tl_account_themes_gen.go#L278: return fmt.Errorf("unable to decode account.themes#7f676421: field themes: %w", err)
tl_account_themes_gen.go#L283: return fmt.Errorf("unable to decode account.themes#7f676421: field themes: %w", err)
tl_account_themes_gen.go#L361: return nil, fmt.Errorf("unable to decode AccountThemesClass: %w", err)
tl_account_themes_gen.go#L368: return nil, fmt.Errorf("unable to decode AccountThemesClass: %w", err)
tl_account_themes_gen.go#L372: return nil, fmt.Errorf("unable to decode AccountThemesClass: %w", bin.NewUnexpectedID(id))
tl_account_themes_gen.go#L384: return fmt.Errorf("unable to decode AccountThemesBox to nil")
tl_account_themes_gen.go#L388: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_account_themes_gen.go#L397: return fmt.Errorf("unable to encode AccountThemesClass as nil")
tl_account_tmp_password_gen.go#L116: return fmt.Errorf("can't encode account.tmpPassword#db64fd34 as nil")
tl_account_tmp_password_gen.go#L125: return fmt.Errorf("can't encode account.tmpPassword#db64fd34 as nil")
tl_account_tmp_password_gen.go#L145: return fmt.Errorf("can't decode account.tmpPassword#db64fd34 to nil")
tl_account_tmp_password_gen.go#L148: return fmt.Errorf("unable to decode account.tmpPassword#db64fd34: %w", err)
tl_account_tmp_password_gen.go#L156: return fmt.Errorf("can't decode account.tmpPassword#db64fd34 to nil")
tl_account_tmp_password_gen.go#L161: return fmt.Errorf("unable to decode account.tmpPassword#db64fd34: field tmp_password: %w", err)
tl_account_tmp_password_gen.go#L168: return fmt.Errorf("unable to decode account.tmpPassword#db64fd34: field valid_until: %w", err)
tl_account_unregister_device_gen.go#L136: return fmt.Errorf("can't encode account.unregisterDevice#3076c4bf as nil")
tl_account_unregister_device_gen.go#L145: return fmt.Errorf("can't encode account.unregisterDevice#3076c4bf as nil")
tl_account_unregister_device_gen.go#L174: return fmt.Errorf("can't decode account.unregisterDevice#3076c4bf to nil")
tl_account_unregister_device_gen.go#L177: return fmt.Errorf("unable to decode account.unregisterDevice#3076c4bf: %w", err)
tl_account_unregister_device_gen.go#L185: return fmt.Errorf("can't decode account.unregisterDevice#3076c4bf to nil")
tl_account_unregister_device_gen.go#L190: return fmt.Errorf("unable to decode account.unregisterDevice#3076c4bf: field token_type: %w", err)
tl_account_unregister_device_gen.go#L197: return fmt.Errorf("unable to decode account.unregisterDevice#3076c4bf: field token: %w", err)
tl_account_unregister_device_gen.go#L204: return fmt.Errorf("unable to decode account.unregisterDevice#3076c4bf: field other_uids: %w", err)
tl_account_unregister_device_gen.go#L209: return fmt.Errorf("unable to decode account.unregisterDevice#3076c4bf: field other_uids: %w", err)
tl_account_update_device_locked_gen.go#L112: return fmt.Errorf("can't encode account.updateDeviceLocked#38df3532 as nil")
tl_account_update_device_locked_gen.go#L121: return fmt.Errorf("can't encode account.updateDeviceLocked#38df3532 as nil")
tl_account_update_device_locked_gen.go#L135: return fmt.Errorf("can't decode account.updateDeviceLocked#38df3532 to nil")
tl_account_update_device_locked_gen.go#L138: return fmt.Errorf("unable to decode account.updateDeviceLocked#38df3532: %w", err)
tl_account_update_device_locked_gen.go#L146: return fmt.Errorf("can't decode account.updateDeviceLocked#38df3532 to nil")
tl_account_update_device_locked_gen.go#L151: return fmt.Errorf("unable to decode account.updateDeviceLocked#38df3532: field period: %w", err)
tl_account_update_notify_settings_gen.go#L116: return fmt.Errorf("can't encode account.updateNotifySettings#84be5b93 as nil")
tl_account_update_notify_settings_gen.go#L125: return fmt.Errorf("can't encode account.updateNotifySettings#84be5b93 as nil")
tl_account_update_notify_settings_gen.go#L128: return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field peer is nil")
tl_account_update_notify_settings_gen.go#L131: return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field peer: %w", err)
tl_account_update_notify_settings_gen.go#L134: return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field settings: %w", err)
tl_account_update_notify_settings_gen.go#L152: return fmt.Errorf("can't decode account.updateNotifySettings#84be5b93 to nil")
tl_account_update_notify_settings_gen.go#L155: return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: %w", err)
tl_account_update_notify_settings_gen.go#L163: return fmt.Errorf("can't decode account.updateNotifySettings#84be5b93 to nil")
tl_account_update_notify_settings_gen.go#L168: return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: field peer: %w", err)
tl_account_update_notify_settings_gen.go#L174: return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: field settings: %w", err)
tl_account_update_password_settings_gen.go#L122: return fmt.Errorf("can't encode account.updatePasswordSettings#a59b102f as nil")
tl_account_update_password_settings_gen.go#L131: return fmt.Errorf("can't encode account.updatePasswordSettings#a59b102f as nil")
tl_account_update_password_settings_gen.go#L134: return fmt.Errorf("unable to encode account.updatePasswordSettings#a59b102f: field password is nil")
tl_account_update_password_settings_gen.go#L137: return fmt.Errorf("unable to encode account.updatePasswordSettings#a59b102f: field password: %w", err)
tl_account_update_password_settings_gen.go#L140: return fmt.Errorf("unable to encode account.updatePasswordSettings#a59b102f: field new_settings: %w", err)
tl_account_update_password_settings_gen.go#L163: return fmt.Errorf("can't decode account.updatePasswordSettings#a59b102f to nil")
tl_account_update_password_settings_gen.go#L166: return fmt.Errorf("unable to decode account.updatePasswordSettings#a59b102f: %w", err)
tl_account_update_password_settings_gen.go#L174: return fmt.Errorf("can't decode account.updatePasswordSettings#a59b102f to nil")
tl_account_update_password_settings_gen.go#L179: return fmt.Errorf("unable to decode account.updatePasswordSettings#a59b102f: field password: %w", err)
tl_account_update_password_settings_gen.go#L185: return fmt.Errorf("unable to decode account.updatePasswordSettings#a59b102f: field new_settings: %w", err)
tl_account_update_profile_gen.go#L153: return fmt.Errorf("can't encode account.updateProfile#78515775 as nil")
tl_account_update_profile_gen.go#L162: return fmt.Errorf("can't encode account.updateProfile#78515775 as nil")
tl_account_update_profile_gen.go#L174: return fmt.Errorf("unable to encode account.updateProfile#78515775: field flags: %w", err)
tl_account_update_profile_gen.go#L236: return fmt.Errorf("can't decode account.updateProfile#78515775 to nil")
tl_account_update_profile_gen.go#L239: return fmt.Errorf("unable to decode account.updateProfile#78515775: %w", err)
tl_account_update_profile_gen.go#L247: return fmt.Errorf("can't decode account.updateProfile#78515775 to nil")
tl_account_update_profile_gen.go#L251: return fmt.Errorf("unable to decode account.updateProfile#78515775: field flags: %w", err)
tl_account_update_profile_gen.go#L257: return fmt.Errorf("unable to decode account.updateProfile#78515775: field first_name: %w", err)
tl_account_update_profile_gen.go#L264: return fmt.Errorf("unable to decode account.updateProfile#78515775: field last_name: %w", err)
tl_account_update_profile_gen.go#L271: return fmt.Errorf("unable to decode account.updateProfile#78515775: field about: %w", err)
tl_account_update_status_gen.go#L109: return fmt.Errorf("can't encode account.updateStatus#6628562c as nil")
tl_account_update_status_gen.go#L118: return fmt.Errorf("can't encode account.updateStatus#6628562c as nil")
tl_account_update_status_gen.go#L132: return fmt.Errorf("can't decode account.updateStatus#6628562c to nil")
tl_account_update_status_gen.go#L135: return fmt.Errorf("unable to decode account.updateStatus#6628562c: %w", err)
tl_account_update_status_gen.go#L143: return fmt.Errorf("can't decode account.updateStatus#6628562c to nil")
tl_account_update_status_gen.go#L148: return fmt.Errorf("unable to decode account.updateStatus#6628562c: field offline: %w", err)
tl_account_update_theme_gen.go#L192: return fmt.Errorf("can't encode account.updateTheme#5cb367d5 as nil")
tl_account_update_theme_gen.go#L201: return fmt.Errorf("can't encode account.updateTheme#5cb367d5 as nil")
tl_account_update_theme_gen.go#L216: return fmt.Errorf("unable to encode account.updateTheme#5cb367d5: field flags: %w", err)
tl_account_update_theme_gen.go#L220: return fmt.Errorf("unable to encode account.updateTheme#5cb367d5: field theme is nil")
tl_account_update_theme_gen.go#L223: return fmt.Errorf("unable to encode account.updateTheme#5cb367d5: field theme: %w", err)
tl_account_update_theme_gen.go#L233: return fmt.Errorf("unable to encode account.updateTheme#5cb367d5: field document is nil")
tl_account_update_theme_gen.go#L236: return fmt.Errorf("unable to encode account.updateTheme#5cb367d5: field document: %w", err)
tl_account_update_theme_gen.go#L241: return fmt.Errorf("unable to encode account.updateTheme#5cb367d5: field settings: %w", err)
tl_account_update_theme_gen.go#L329: return fmt.Errorf("can't decode account.updateTheme#5cb367d5 to nil")
tl_account_update_theme_gen.go#L332: return fmt.Errorf("unable to decode account.updateTheme#5cb367d5: %w", err)
tl_account_update_theme_gen.go#L340: return fmt.Errorf("can't decode account.updateTheme#5cb367d5 to nil")
tl_account_update_theme_gen.go#L344: return fmt.Errorf("unable to decode account.updateTheme#5cb367d5: field flags: %w", err)
tl_account_update_theme_gen.go#L350: return fmt.Errorf("unable to decode account.updateTheme#5cb367d5: field format: %w", err)
tl_account_update_theme_gen.go#L357: return fmt.Errorf("unable to decode account.updateTheme#5cb367d5: field theme: %w", err)
tl_account_update_theme_gen.go#L364: return fmt.Errorf("unable to decode account.updateTheme#5cb367d5: field slug: %w", err)
tl_account_update_theme_gen.go#L371: return fmt.Errorf("unable to decode account.updateTheme#5cb367d5: field title: %w", err)
tl_account_update_theme_gen.go#L378: return fmt.Errorf("unable to decode account.updateTheme#5cb367d5: field document: %w", err)
tl_account_update_theme_gen.go#L384: return fmt.Errorf("unable to decode account.updateTheme#5cb367d5: field settings: %w", err)
tl_account_update_username_gen.go#L106: return fmt.Errorf("can't encode account.updateUsername#3e0bdd7c as nil")
tl_account_update_username_gen.go#L115: return fmt.Errorf("can't encode account.updateUsername#3e0bdd7c as nil")
tl_account_update_username_gen.go#L129: return fmt.Errorf("can't decode account.updateUsername#3e0bdd7c to nil")
tl_account_update_username_gen.go#L132: return fmt.Errorf("unable to decode account.updateUsername#3e0bdd7c: %w", err)
tl_account_update_username_gen.go#L140: return fmt.Errorf("can't decode account.updateUsername#3e0bdd7c to nil")
tl_account_update_username_gen.go#L145: return fmt.Errorf("unable to decode account.updateUsername#3e0bdd7c: field username: %w", err)
tl_account_upload_theme_gen.go#L155: return fmt.Errorf("can't encode account.uploadTheme#1c3db333 as nil")
tl_account_upload_theme_gen.go#L164: return fmt.Errorf("can't encode account.uploadTheme#1c3db333 as nil")
tl_account_upload_theme_gen.go#L170: return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field flags: %w", err)
tl_account_upload_theme_gen.go#L173: return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field file is nil")
tl_account_upload_theme_gen.go#L176: return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field file: %w", err)
tl_account_upload_theme_gen.go#L180: return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field thumb is nil")
tl_account_upload_theme_gen.go#L183: return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field thumb: %w", err)
tl_account_upload_theme_gen.go#L224: return fmt.Errorf("can't decode account.uploadTheme#1c3db333 to nil")
tl_account_upload_theme_gen.go#L227: return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: %w", err)
tl_account_upload_theme_gen.go#L235: return fmt.Errorf("can't decode account.uploadTheme#1c3db333 to nil")
tl_account_upload_theme_gen.go#L239: return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field flags: %w", err)
tl_account_upload_theme_gen.go#L245: return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field file: %w", err)
tl_account_upload_theme_gen.go#L252: return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field thumb: %w", err)
tl_account_upload_theme_gen.go#L259: return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field file_name: %w", err)
tl_account_upload_theme_gen.go#L266: return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field mime_type: %w", err)
tl_account_upload_wall_paper_gen.go#L127: return fmt.Errorf("can't encode account.uploadWallPaper#dd853661 as nil")
tl_account_upload_wall_paper_gen.go#L136: return fmt.Errorf("can't encode account.uploadWallPaper#dd853661 as nil")
tl_account_upload_wall_paper_gen.go#L139: return fmt.Errorf("unable to encode account.uploadWallPaper#dd853661: field file is nil")
tl_account_upload_wall_paper_gen.go#L142: return fmt.Errorf("unable to encode account.uploadWallPaper#dd853661: field file: %w", err)
tl_account_upload_wall_paper_gen.go#L146: return fmt.Errorf("unable to encode account.uploadWallPaper#dd853661: field settings: %w", err)
tl_account_upload_wall_paper_gen.go#L169: return fmt.Errorf("can't decode account.uploadWallPaper#dd853661 to nil")
tl_account_upload_wall_paper_gen.go#L172: return fmt.Errorf("unable to decode account.uploadWallPaper#dd853661: %w", err)
tl_account_upload_wall_paper_gen.go#L180: return fmt.Errorf("can't decode account.uploadWallPaper#dd853661 to nil")
tl_account_upload_wall_paper_gen.go#L185: return fmt.Errorf("unable to decode account.uploadWallPaper#dd853661: field file: %w", err)
tl_account_upload_wall_paper_gen.go#L192: return fmt.Errorf("unable to decode account.uploadWallPaper#dd853661: field mime_type: %w", err)
tl_account_upload_wall_paper_gen.go#L198: return fmt.Errorf("unable to decode account.uploadWallPaper#dd853661: field settings: %w", err)
tl_account_verify_email_gen.go#L119: return fmt.Errorf("can't encode account.verifyEmail#ecba39db as nil")
tl_account_verify_email_gen.go#L128: return fmt.Errorf("can't encode account.verifyEmail#ecba39db as nil")
tl_account_verify_email_gen.go#L148: return fmt.Errorf("can't decode account.verifyEmail#ecba39db to nil")
tl_account_verify_email_gen.go#L151: return fmt.Errorf("unable to decode account.verifyEmail#ecba39db: %w", err)
tl_account_verify_email_gen.go#L159: return fmt.Errorf("can't decode account.verifyEmail#ecba39db to nil")
tl_account_verify_email_gen.go#L164: return fmt.Errorf("unable to decode account.verifyEmail#ecba39db: field email: %w", err)
tl_account_verify_email_gen.go#L171: return fmt.Errorf("unable to decode account.verifyEmail#ecba39db: field code: %w", err)
tl_account_verify_phone_gen.go#L136: return fmt.Errorf("can't encode account.verifyPhone#4dd3a7f6 as nil")
tl_account_verify_phone_gen.go#L145: return fmt.Errorf("can't encode account.verifyPhone#4dd3a7f6 as nil")
tl_account_verify_phone_gen.go#L171: return fmt.Errorf("can't decode account.verifyPhone#4dd3a7f6 to nil")
tl_account_verify_phone_gen.go#L174: return fmt.Errorf("unable to decode account.verifyPhone#4dd3a7f6: %w", err)
tl_account_verify_phone_gen.go#L182: return fmt.Errorf("can't decode account.verifyPhone#4dd3a7f6 to nil")
tl_account_verify_phone_gen.go#L187: return fmt.Errorf("unable to decode account.verifyPhone#4dd3a7f6: field phone_number: %w", err)
tl_account_verify_phone_gen.go#L194: return fmt.Errorf("unable to decode account.verifyPhone#4dd3a7f6: field phone_code_hash: %w", err)
tl_account_verify_phone_gen.go#L201: return fmt.Errorf("unable to decode account.verifyPhone#4dd3a7f6: field phone_code: %w", err)
tl_account_wall_papers_gen.go#L88: return fmt.Errorf("can't encode account.wallPapersNotModified#1c199183 as nil")
tl_account_wall_papers_gen.go#L97: return fmt.Errorf("can't encode account.wallPapersNotModified#1c199183 as nil")
tl_account_wall_papers_gen.go#L105: return fmt.Errorf("can't decode account.wallPapersNotModified#1c199183 to nil")
tl_account_wall_papers_gen.go#L108: return fmt.Errorf("unable to decode account.wallPapersNotModified#1c199183: %w", err)
tl_account_wall_papers_gen.go#L116: return fmt.Errorf("can't decode account.wallPapersNotModified#1c199183 to nil")
tl_account_wall_papers_gen.go#L221: return fmt.Errorf("can't encode account.wallPapers#702b65a9 as nil")
tl_account_wall_papers_gen.go#L230: return fmt.Errorf("can't encode account.wallPapers#702b65a9 as nil")
tl_account_wall_papers_gen.go#L236: return fmt.Errorf("unable to encode account.wallPapers#702b65a9: field wallpapers element with index %d is nil", idx)
tl_account_wall_papers_gen.go#L239: return fmt.Errorf("unable to encode account.wallPapers#702b65a9: field wallpapers element with index %d: %w", idx, err)
tl_account_wall_papers_gen.go#L263: return fmt.Errorf("can't decode account.wallPapers#702b65a9 to nil")
tl_account_wall_papers_gen.go#L266: return fmt.Errorf("unable to decode account.wallPapers#702b65a9: %w", err)
tl_account_wall_papers_gen.go#L274: return fmt.Errorf("can't decode account.wallPapers#702b65a9 to nil")
tl_account_wall_papers_gen.go#L279: return fmt.Errorf("unable to decode account.wallPapers#702b65a9: field hash: %w", err)
tl_account_wall_papers_gen.go#L286: return fmt.Errorf("unable to decode account.wallPapers#702b65a9: field wallpapers: %w", err)
tl_account_wall_papers_gen.go#L291: return fmt.Errorf("unable to decode account.wallPapers#702b65a9: field wallpapers: %w", err)
tl_account_wall_papers_gen.go#L369: return nil, fmt.Errorf("unable to decode AccountWallPapersClass: %w", err)
tl_account_wall_papers_gen.go#L376: return nil, fmt.Errorf("unable to decode AccountWallPapersClass: %w", err)
tl_account_wall_papers_gen.go#L380: return nil, fmt.Errorf("unable to decode AccountWallPapersClass: %w", bin.NewUnexpectedID(id))
tl_account_wall_papers_gen.go#L392: return fmt.Errorf("unable to decode AccountWallPapersBox to nil")
tl_account_wall_papers_gen.go#L396: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_account_wall_papers_gen.go#L405: return fmt.Errorf("unable to encode AccountWallPapersClass as nil")
tl_account_web_authorizations_gen.go#L116: return fmt.Errorf("can't encode account.webAuthorizations#ed56c9fc as nil")
tl_account_web_authorizations_gen.go#L125: return fmt.Errorf("can't encode account.webAuthorizations#ed56c9fc as nil")
tl_account_web_authorizations_gen.go#L130: return fmt.Errorf("unable to encode account.webAuthorizations#ed56c9fc: field authorizations element with index %d: %w", idx, err)
tl_account_web_authorizations_gen.go#L136: return fmt.Errorf("unable to encode account.webAuthorizations#ed56c9fc: field users element with index %d is nil", idx)
tl_account_web_authorizations_gen.go#L139: return fmt.Errorf("unable to encode account.webAuthorizations#ed56c9fc: field users element with index %d: %w", idx, err)
tl_account_web_authorizations_gen.go#L163: return fmt.Errorf("can't decode account.webAuthorizations#ed56c9fc to nil")
tl_account_web_authorizations_gen.go#L166: return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: %w", err)
tl_account_web_authorizations_gen.go#L174: return fmt.Errorf("can't decode account.webAuthorizations#ed56c9fc to nil")
tl_account_web_authorizations_gen.go#L179: return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: field authorizations: %w", err)
tl_account_web_authorizations_gen.go#L184: return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: field authorizations: %w", err)
tl_account_web_authorizations_gen.go#L192: return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: field users: %w", err)
tl_account_web_authorizations_gen.go#L197: return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: field users: %w", err)
tl_auth_accept_login_token_gen.go#L113: return fmt.Errorf("can't encode auth.acceptLoginToken#e894ad4d as nil")
tl_auth_accept_login_token_gen.go#L122: return fmt.Errorf("can't encode auth.acceptLoginToken#e894ad4d as nil")
tl_auth_accept_login_token_gen.go#L136: return fmt.Errorf("can't decode auth.acceptLoginToken#e894ad4d to nil")
tl_auth_accept_login_token_gen.go#L139: return fmt.Errorf("unable to decode auth.acceptLoginToken#e894ad4d: %w", err)
tl_auth_accept_login_token_gen.go#L147: return fmt.Errorf("can't decode auth.acceptLoginToken#e894ad4d to nil")
tl_auth_accept_login_token_gen.go#L152: return fmt.Errorf("unable to decode auth.acceptLoginToken#e894ad4d: field token: %w", err)
tl_auth_authorization_gen.go#L133: return fmt.Errorf("can't encode auth.authorization#cd050916 as nil")
tl_auth_authorization_gen.go#L142: return fmt.Errorf("can't encode auth.authorization#cd050916 as nil")
tl_auth_authorization_gen.go#L148: return fmt.Errorf("unable to encode auth.authorization#cd050916: field flags: %w", err)
tl_auth_authorization_gen.go#L154: return fmt.Errorf("unable to encode auth.authorization#cd050916: field user is nil")
tl_auth_authorization_gen.go#L157: return fmt.Errorf("unable to encode auth.authorization#cd050916: field user: %w", err)
tl_auth_authorization_gen.go#L185: return fmt.Errorf("can't decode auth.authorization#cd050916 to nil")
tl_auth_authorization_gen.go#L188: return fmt.Errorf("unable to decode auth.authorization#cd050916: %w", err)
tl_auth_authorization_gen.go#L196: return fmt.Errorf("can't decode auth.authorization#cd050916 to nil")
tl_auth_authorization_gen.go#L200: return fmt.Errorf("unable to decode auth.authorization#cd050916: field flags: %w", err)
tl_auth_authorization_gen.go#L206: return fmt.Errorf("unable to decode auth.authorization#cd050916: field tmp_sessions: %w", err)
tl_auth_authorization_gen.go#L213: return fmt.Errorf("unable to decode auth.authorization#cd050916: field user: %w", err)
tl_auth_authorization_gen.go#L325: return fmt.Errorf("can't encode auth.authorizationSignUpRequired#44747e9a as nil")
tl_auth_authorization_gen.go#L334: return fmt.Errorf("can't encode auth.authorizationSignUpRequired#44747e9a as nil")
tl_auth_authorization_gen.go#L340: return fmt.Errorf("unable to encode auth.authorizationSignUpRequired#44747e9a: field flags: %w", err)
tl_auth_authorization_gen.go#L344: return fmt.Errorf("unable to encode auth.authorizationSignUpRequired#44747e9a: field terms_of_service: %w", err)
tl_auth_authorization_gen.go#L368: return fmt.Errorf("can't decode auth.authorizationSignUpRequired#44747e9a to nil")
tl_auth_authorization_gen.go#L371: return fmt.Errorf("unable to decode auth.authorizationSignUpRequired#44747e9a: %w", err)
tl_auth_authorization_gen.go#L379: return fmt.Errorf("can't decode auth.authorizationSignUpRequired#44747e9a to nil")
tl_auth_authorization_gen.go#L383: return fmt.Errorf("unable to decode auth.authorizationSignUpRequired#44747e9a: field flags: %w", err)
tl_auth_authorization_gen.go#L388: return fmt.Errorf("unable to decode auth.authorizationSignUpRequired#44747e9a: field terms_of_service: %w", err)
tl_auth_authorization_gen.go#L451: return nil, fmt.Errorf("unable to decode AuthAuthorizationClass: %w", err)
tl_auth_authorization_gen.go#L458: return nil, fmt.Errorf("unable to decode AuthAuthorizationClass: %w", err)
tl_auth_authorization_gen.go#L462: return nil, fmt.Errorf("unable to decode AuthAuthorizationClass: %w", bin.NewUnexpectedID(id))
tl_auth_authorization_gen.go#L474: return fmt.Errorf("unable to decode AuthAuthorizationBox to nil")
tl_auth_authorization_gen.go#L478: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_auth_authorization_gen.go#L487: return fmt.Errorf("unable to encode AuthAuthorizationClass as nil")
tl_auth_bind_temp_auth_key_gen.go#L153: return fmt.Errorf("can't encode auth.bindTempAuthKey#cdd42a05 as nil")
tl_auth_bind_temp_auth_key_gen.go#L162: return fmt.Errorf("can't encode auth.bindTempAuthKey#cdd42a05 as nil")
tl_auth_bind_temp_auth_key_gen.go#L194: return fmt.Errorf("can't decode auth.bindTempAuthKey#cdd42a05 to nil")
tl_auth_bind_temp_auth_key_gen.go#L197: return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: %w", err)
tl_auth_bind_temp_auth_key_gen.go#L205: return fmt.Errorf("can't decode auth.bindTempAuthKey#cdd42a05 to nil")
tl_auth_bind_temp_auth_key_gen.go#L210: return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: field perm_auth_key_id: %w", err)
tl_auth_bind_temp_auth_key_gen.go#L217: return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: field nonce: %w", err)
tl_auth_bind_temp_auth_key_gen.go#L224: return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: field expires_at: %w", err)
tl_auth_bind_temp_auth_key_gen.go#L231: return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: field encrypted_message: %w", err)
tl_auth_cancel_code_gen.go#L119: return fmt.Errorf("can't encode auth.cancelCode#1f040578 as nil")
tl_auth_cancel_code_gen.go#L128: return fmt.Errorf("can't encode auth.cancelCode#1f040578 as nil")
tl_auth_cancel_code_gen.go#L148: return fmt.Errorf("can't decode auth.cancelCode#1f040578 to nil")
tl_auth_cancel_code_gen.go#L151: return fmt.Errorf("unable to decode auth.cancelCode#1f040578: %w", err)
tl_auth_cancel_code_gen.go#L159: return fmt.Errorf("can't decode auth.cancelCode#1f040578 to nil")
tl_auth_cancel_code_gen.go#L164: return fmt.Errorf("unable to decode auth.cancelCode#1f040578: field phone_number: %w", err)
tl_auth_cancel_code_gen.go#L171: return fmt.Errorf("unable to decode auth.cancelCode#1f040578: field phone_code_hash: %w", err)
tl_auth_check_password_gen.go#L111: return fmt.Errorf("can't encode auth.checkPassword#d18b4d16 as nil")
tl_auth_check_password_gen.go#L120: return fmt.Errorf("can't encode auth.checkPassword#d18b4d16 as nil")
tl_auth_check_password_gen.go#L123: return fmt.Errorf("unable to encode auth.checkPassword#d18b4d16: field password is nil")
tl_auth_check_password_gen.go#L126: return fmt.Errorf("unable to encode auth.checkPassword#d18b4d16: field password: %w", err)
tl_auth_check_password_gen.go#L144: return fmt.Errorf("can't decode auth.checkPassword#d18b4d16 to nil")
tl_auth_check_password_gen.go#L147: return fmt.Errorf("unable to decode auth.checkPassword#d18b4d16: %w", err)
tl_auth_check_password_gen.go#L155: return fmt.Errorf("can't decode auth.checkPassword#d18b4d16 to nil")
tl_auth_check_password_gen.go#L160: return fmt.Errorf("unable to decode auth.checkPassword#d18b4d16: field password: %w", err)
tl_auth_code_type_gen.go#L89: return fmt.Errorf("can't encode auth.codeTypeSms#72a3158c as nil")
tl_auth_code_type_gen.go#L98: return fmt.Errorf("can't encode auth.codeTypeSms#72a3158c as nil")
tl_auth_code_type_gen.go#L106: return fmt.Errorf("can't decode auth.codeTypeSms#72a3158c to nil")
tl_auth_code_type_gen.go#L109: return fmt.Errorf("unable to decode auth.codeTypeSms#72a3158c: %w", err)
tl_auth_code_type_gen.go#L117: return fmt.Errorf("can't decode auth.codeTypeSms#72a3158c to nil")
tl_auth_code_type_gen.go#L192: return fmt.Errorf("can't encode auth.codeTypeCall#741cd3e3 as nil")
tl_auth_code_type_gen.go#L201: return fmt.Errorf("can't encode auth.codeTypeCall#741cd3e3 as nil")
tl_auth_code_type_gen.go#L209: return fmt.Errorf("can't decode auth.codeTypeCall#741cd3e3 to nil")
tl_auth_code_type_gen.go#L212: return fmt.Errorf("unable to decode auth.codeTypeCall#741cd3e3: %w", err)
tl_auth_code_type_gen.go#L220: return fmt.Errorf("can't decode auth.codeTypeCall#741cd3e3 to nil")
tl_auth_code_type_gen.go#L295: return fmt.Errorf("can't encode auth.codeTypeFlashCall#226ccefb as nil")
tl_auth_code_type_gen.go#L304: return fmt.Errorf("can't encode auth.codeTypeFlashCall#226ccefb as nil")
tl_auth_code_type_gen.go#L312: return fmt.Errorf("can't decode auth.codeTypeFlashCall#226ccefb to nil")
tl_auth_code_type_gen.go#L315: return fmt.Errorf("unable to decode auth.codeTypeFlashCall#226ccefb: %w", err)
tl_auth_code_type_gen.go#L323: return fmt.Errorf("can't decode auth.codeTypeFlashCall#226ccefb to nil")
tl_auth_code_type_gen.go#L386: return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", err)
tl_auth_code_type_gen.go#L393: return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", err)
tl_auth_code_type_gen.go#L400: return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", err)
tl_auth_code_type_gen.go#L404: return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", bin.NewUnexpectedID(id))
tl_auth_code_type_gen.go#L416: return fmt.Errorf("unable to decode AuthCodeTypeBox to nil")
tl_auth_code_type_gen.go#L420: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_auth_code_type_gen.go#L429: return fmt.Errorf("unable to encode AuthCodeTypeClass as nil")
tl_auth_drop_temp_auth_keys_gen.go#L105: return fmt.Errorf("can't encode auth.dropTempAuthKeys#8e48a188 as nil")
tl_auth_drop_temp_auth_keys_gen.go#L114: return fmt.Errorf("can't encode auth.dropTempAuthKeys#8e48a188 as nil")
tl_auth_drop_temp_auth_keys_gen.go#L131: return fmt.Errorf("can't decode auth.dropTempAuthKeys#8e48a188 to nil")
tl_auth_drop_temp_auth_keys_gen.go#L134: return fmt.Errorf("unable to decode auth.dropTempAuthKeys#8e48a188: %w", err)
tl_auth_drop_temp_auth_keys_gen.go#L142: return fmt.Errorf("can't decode auth.dropTempAuthKeys#8e48a188 to nil")
tl_auth_drop_temp_auth_keys_gen.go#L147: return fmt.Errorf("unable to decode auth.dropTempAuthKeys#8e48a188: field except_auth_keys: %w", err)
tl_auth_drop_temp_auth_keys_gen.go#L152: return fmt.Errorf("unable to decode auth.dropTempAuthKeys#8e48a188: field except_auth_keys: %w", err)
tl_auth_export_authorization_gen.go#L105: return fmt.Errorf("can't encode auth.exportAuthorization#e5bfffcd as nil")
tl_auth_export_authorization_gen.go#L114: return fmt.Errorf("can't encode auth.exportAuthorization#e5bfffcd as nil")
tl_auth_export_authorization_gen.go#L128: return fmt.Errorf("can't decode auth.exportAuthorization#e5bfffcd to nil")
tl_auth_export_authorization_gen.go#L131: return fmt.Errorf("unable to decode auth.exportAuthorization#e5bfffcd: %w", err)
tl_auth_export_authorization_gen.go#L139: return fmt.Errorf("can't decode auth.exportAuthorization#e5bfffcd to nil")
tl_auth_export_authorization_gen.go#L144: return fmt.Errorf("unable to decode auth.exportAuthorization#e5bfffcd: field dc_id: %w", err)
tl_auth_export_login_token_gen.go#L140: return fmt.Errorf("can't encode auth.exportLoginToken#b1b41517 as nil")
tl_auth_export_login_token_gen.go#L149: return fmt.Errorf("can't encode auth.exportLoginToken#b1b41517 as nil")
tl_auth_export_login_token_gen.go#L178: return fmt.Errorf("can't decode auth.exportLoginToken#b1b41517 to nil")
tl_auth_export_login_token_gen.go#L181: return fmt.Errorf("unable to decode auth.exportLoginToken#b1b41517: %w", err)
tl_auth_export_login_token_gen.go#L189: return fmt.Errorf("can't decode auth.exportLoginToken#b1b41517 to nil")
tl_auth_export_login_token_gen.go#L194: return fmt.Errorf("unable to decode auth.exportLoginToken#b1b41517: field api_id: %w", err)
tl_auth_export_login_token_gen.go#L201: return fmt.Errorf("unable to decode auth.exportLoginToken#b1b41517: field api_hash: %w", err)
tl_auth_export_login_token_gen.go#L208: return fmt.Errorf("unable to decode auth.exportLoginToken#b1b41517: field except_ids: %w", err)
tl_auth_export_login_token_gen.go#L213: return fmt.Errorf("unable to decode auth.exportLoginToken#b1b41517: field except_ids: %w", err)
tl_auth_exported_authorization_gen.go#L116: return fmt.Errorf("can't encode auth.exportedAuthorization#df969c2d as nil")
tl_auth_exported_authorization_gen.go#L125: return fmt.Errorf("can't encode auth.exportedAuthorization#df969c2d as nil")
tl_auth_exported_authorization_gen.go#L145: return fmt.Errorf("can't decode auth.exportedAuthorization#df969c2d to nil")
tl_auth_exported_authorization_gen.go#L148: return fmt.Errorf("unable to decode auth.exportedAuthorization#df969c2d: %w", err)
tl_auth_exported_authorization_gen.go#L156: return fmt.Errorf("can't decode auth.exportedAuthorization#df969c2d to nil")
tl_auth_exported_authorization_gen.go#L161: return fmt.Errorf("unable to decode auth.exportedAuthorization#df969c2d: field id: %w", err)
tl_auth_exported_authorization_gen.go#L168: return fmt.Errorf("unable to decode auth.exportedAuthorization#df969c2d: field bytes: %w", err)
tl_auth_import_authorization_gen.go#L116: return fmt.Errorf("can't encode auth.importAuthorization#e3ef9613 as nil")
tl_auth_import_authorization_gen.go#L125: return fmt.Errorf("can't encode auth.importAuthorization#e3ef9613 as nil")
tl_auth_import_authorization_gen.go#L145: return fmt.Errorf("can't decode auth.importAuthorization#e3ef9613 to nil")
tl_auth_import_authorization_gen.go#L148: return fmt.Errorf("unable to decode auth.importAuthorization#e3ef9613: %w", err)
tl_auth_import_authorization_gen.go#L156: return fmt.Errorf("can't decode auth.importAuthorization#e3ef9613 to nil")
tl_auth_import_authorization_gen.go#L161: return fmt.Errorf("unable to decode auth.importAuthorization#e3ef9613: field id: %w", err)
tl_auth_import_authorization_gen.go#L168: return fmt.Errorf("unable to decode auth.importAuthorization#e3ef9613: field bytes: %w", err)
tl_auth_import_bot_authorization_gen.go#L147: return fmt.Errorf("can't encode auth.importBotAuthorization#67a3ff2c as nil")
tl_auth_import_bot_authorization_gen.go#L156: return fmt.Errorf("can't encode auth.importBotAuthorization#67a3ff2c as nil")
tl_auth_import_bot_authorization_gen.go#L188: return fmt.Errorf("can't decode auth.importBotAuthorization#67a3ff2c to nil")
tl_auth_import_bot_authorization_gen.go#L191: return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: %w", err)
tl_auth_import_bot_authorization_gen.go#L199: return fmt.Errorf("can't decode auth.importBotAuthorization#67a3ff2c to nil")
tl_auth_import_bot_authorization_gen.go#L204: return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: field flags: %w", err)
tl_auth_import_bot_authorization_gen.go#L211: return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: field api_id: %w", err)
tl_auth_import_bot_authorization_gen.go#L218: return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: field api_hash: %w", err)
tl_auth_import_bot_authorization_gen.go#L225: return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: field bot_auth_token: %w", err)
tl_auth_import_login_token_gen.go#L111: return fmt.Errorf("can't encode auth.importLoginToken#95ac5ce4 as nil")
tl_auth_import_login_token_gen.go#L120: return fmt.Errorf("can't encode auth.importLoginToken#95ac5ce4 as nil")
tl_auth_import_login_token_gen.go#L134: return fmt.Errorf("can't decode auth.importLoginToken#95ac5ce4 to nil")
tl_auth_import_login_token_gen.go#L137: return fmt.Errorf("unable to decode auth.importLoginToken#95ac5ce4: %w", err)
tl_auth_import_login_token_gen.go#L145: return fmt.Errorf("can't decode auth.importLoginToken#95ac5ce4 to nil")
tl_auth_import_login_token_gen.go#L150: return fmt.Errorf("unable to decode auth.importLoginToken#95ac5ce4: field token: %w", err)
tl_auth_log_out_gen.go#L88: return fmt.Errorf("can't encode auth.logOut#5717da40 as nil")
tl_auth_log_out_gen.go#L97: return fmt.Errorf("can't encode auth.logOut#5717da40 as nil")
tl_auth_log_out_gen.go#L105: return fmt.Errorf("can't decode auth.logOut#5717da40 to nil")
tl_auth_log_out_gen.go#L108: return fmt.Errorf("unable to decode auth.logOut#5717da40: %w", err)
tl_auth_log_out_gen.go#L116: return fmt.Errorf("can't decode auth.logOut#5717da40 to nil")
tl_auth_login_token_gen.go#L119: return fmt.Errorf("can't encode auth.loginToken#629f1980 as nil")
tl_auth_login_token_gen.go#L128: return fmt.Errorf("can't encode auth.loginToken#629f1980 as nil")
tl_auth_login_token_gen.go#L148: return fmt.Errorf("can't decode auth.loginToken#629f1980 to nil")
tl_auth_login_token_gen.go#L151: return fmt.Errorf("unable to decode auth.loginToken#629f1980: %w", err)
tl_auth_login_token_gen.go#L159: return fmt.Errorf("can't decode auth.loginToken#629f1980 to nil")
tl_auth_login_token_gen.go#L164: return fmt.Errorf("unable to decode auth.loginToken#629f1980: field expires: %w", err)
tl_auth_login_token_gen.go#L171: return fmt.Errorf("unable to decode auth.loginToken#629f1980: field token: %w", err)
tl_auth_login_token_gen.go#L275: return fmt.Errorf("can't encode auth.loginTokenMigrateTo#68e9916 as nil")
tl_auth_login_token_gen.go#L284: return fmt.Errorf("can't encode auth.loginTokenMigrateTo#68e9916 as nil")
tl_auth_login_token_gen.go#L304: return fmt.Errorf("can't decode auth.loginTokenMigrateTo#68e9916 to nil")
tl_auth_login_token_gen.go#L307: return fmt.Errorf("unable to decode auth.loginTokenMigrateTo#68e9916: %w", err)
tl_auth_login_token_gen.go#L315: return fmt.Errorf("can't decode auth.loginTokenMigrateTo#68e9916 to nil")
tl_auth_login_token_gen.go#L320: return fmt.Errorf("unable to decode auth.loginTokenMigrateTo#68e9916: field dc_id: %w", err)
tl_auth_login_token_gen.go#L327: return fmt.Errorf("unable to decode auth.loginTokenMigrateTo#68e9916: field token: %w", err)
tl_auth_login_token_gen.go#L420: return fmt.Errorf("can't encode auth.loginTokenSuccess#390d5c5e as nil")
tl_auth_login_token_gen.go#L429: return fmt.Errorf("can't encode auth.loginTokenSuccess#390d5c5e as nil")
tl_auth_login_token_gen.go#L432: return fmt.Errorf("unable to encode auth.loginTokenSuccess#390d5c5e: field authorization is nil")
tl_auth_login_token_gen.go#L435: return fmt.Errorf("unable to encode auth.loginTokenSuccess#390d5c5e: field authorization: %w", err)
tl_auth_login_token_gen.go#L448: return fmt.Errorf("can't decode auth.loginTokenSuccess#390d5c5e to nil")
tl_auth_login_token_gen.go#L451: return fmt.Errorf("unable to decode auth.loginTokenSuccess#390d5c5e: %w", err)
tl_auth_login_token_gen.go#L459: return fmt.Errorf("can't decode auth.loginTokenSuccess#390d5c5e to nil")
tl_auth_login_token_gen.go#L464: return fmt.Errorf("unable to decode auth.loginTokenSuccess#390d5c5e: field authorization: %w", err)
tl_auth_login_token_gen.go#L529: return nil, fmt.Errorf("unable to decode AuthLoginTokenClass: %w", err)
tl_auth_login_token_gen.go#L536: return nil, fmt.Errorf("unable to decode AuthLoginTokenClass: %w", err)
tl_auth_login_token_gen.go#L543: return nil, fmt.Errorf("unable to decode AuthLoginTokenClass: %w", err)
tl_auth_login_token_gen.go#L547: return nil, fmt.Errorf("unable to decode AuthLoginTokenClass: %w", bin.NewUnexpectedID(id))
tl_auth_login_token_gen.go#L559: return fmt.Errorf("unable to decode AuthLoginTokenBox to nil")
tl_auth_login_token_gen.go#L563: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_auth_login_token_gen.go#L572: return fmt.Errorf("unable to encode AuthLoginTokenClass as nil")
tl_auth_password_recovery_gen.go#L113: return fmt.Errorf("can't encode auth.passwordRecovery#137948a5 as nil")
tl_auth_password_recovery_gen.go#L122: return fmt.Errorf("can't encode auth.passwordRecovery#137948a5 as nil")
tl_auth_password_recovery_gen.go#L136: return fmt.Errorf("can't decode auth.passwordRecovery#137948a5 to nil")
tl_auth_password_recovery_gen.go#L139: return fmt.Errorf("unable to decode auth.passwordRecovery#137948a5: %w", err)
tl_auth_password_recovery_gen.go#L147: return fmt.Errorf("can't decode auth.passwordRecovery#137948a5 to nil")
tl_auth_password_recovery_gen.go#L152: return fmt.Errorf("unable to decode auth.passwordRecovery#137948a5: field email_pattern: %w", err)
tl_auth_recover_password_gen.go#L110: return fmt.Errorf("can't encode auth.recoverPassword#4ea56e92 as nil")
tl_auth_recover_password_gen.go#L119: return fmt.Errorf("can't encode auth.recoverPassword#4ea56e92 as nil")
tl_auth_recover_password_gen.go#L133: return fmt.Errorf("can't decode auth.recoverPassword#4ea56e92 to nil")
tl_auth_recover_password_gen.go#L136: return fmt.Errorf("unable to decode auth.recoverPassword#4ea56e92: %w", err)
tl_auth_recover_password_gen.go#L144: return fmt.Errorf("can't decode auth.recoverPassword#4ea56e92 to nil")
tl_auth_recover_password_gen.go#L149: return fmt.Errorf("unable to decode auth.recoverPassword#4ea56e92: field code: %w", err)
tl_auth_request_password_recovery_gen.go#L93: return fmt.Errorf("can't encode auth.requestPasswordRecovery#d897bc66 as nil")
tl_auth_request_password_recovery_gen.go#L102: return fmt.Errorf("can't encode auth.requestPasswordRecovery#d897bc66 as nil")
tl_auth_request_password_recovery_gen.go#L110: return fmt.Errorf("can't decode auth.requestPasswordRecovery#d897bc66 to nil")
tl_auth_request_password_recovery_gen.go#L113: return fmt.Errorf("unable to decode auth.requestPasswordRecovery#d897bc66: %w", err)
tl_auth_request_password_recovery_gen.go#L121: return fmt.Errorf("can't decode auth.requestPasswordRecovery#d897bc66 to nil")
tl_auth_resend_code_gen.go#L123: return fmt.Errorf("can't encode auth.resendCode#3ef1a9bf as nil")
tl_auth_resend_code_gen.go#L132: return fmt.Errorf("can't encode auth.resendCode#3ef1a9bf as nil")
tl_auth_resend_code_gen.go#L152: return fmt.Errorf("can't decode auth.resendCode#3ef1a9bf to nil")
tl_auth_resend_code_gen.go#L155: return fmt.Errorf("unable to decode auth.resendCode#3ef1a9bf: %w", err)
tl_auth_resend_code_gen.go#L163: return fmt.Errorf("can't decode auth.resendCode#3ef1a9bf to nil")
tl_auth_resend_code_gen.go#L168: return fmt.Errorf("unable to decode auth.resendCode#3ef1a9bf: field phone_number: %w", err)
tl_auth_resend_code_gen.go#L175: return fmt.Errorf("unable to decode auth.resendCode#3ef1a9bf: field phone_code_hash: %w", err)
tl_auth_reset_authorizations_gen.go#L93: return fmt.Errorf("can't encode auth.resetAuthorizations#9fab0d1a as nil")
tl_auth_reset_authorizations_gen.go#L102: return fmt.Errorf("can't encode auth.resetAuthorizations#9fab0d1a as nil")
tl_auth_reset_authorizations_gen.go#L110: return fmt.Errorf("can't decode auth.resetAuthorizations#9fab0d1a to nil")
tl_auth_reset_authorizations_gen.go#L113: return fmt.Errorf("unable to decode auth.resetAuthorizations#9fab0d1a: %w", err)
tl_auth_reset_authorizations_gen.go#L121: return fmt.Errorf("can't decode auth.resetAuthorizations#9fab0d1a to nil")
tl_auth_send_code_gen.go#L144: return fmt.Errorf("can't encode auth.sendCode#a677244f as nil")
tl_auth_send_code_gen.go#L153: return fmt.Errorf("can't encode auth.sendCode#a677244f as nil")
tl_auth_send_code_gen.go#L159: return fmt.Errorf("unable to encode auth.sendCode#a677244f: field settings: %w", err)
tl_auth_send_code_gen.go#L187: return fmt.Errorf("can't decode auth.sendCode#a677244f to nil")
tl_auth_send_code_gen.go#L190: return fmt.Errorf("unable to decode auth.sendCode#a677244f: %w", err)
tl_auth_send_code_gen.go#L198: return fmt.Errorf("can't decode auth.sendCode#a677244f to nil")
tl_auth_send_code_gen.go#L203: return fmt.Errorf("unable to decode auth.sendCode#a677244f: field phone_number: %w", err)
tl_auth_send_code_gen.go#L210: return fmt.Errorf("unable to decode auth.sendCode#a677244f: field api_id: %w", err)
tl_auth_send_code_gen.go#L217: return fmt.Errorf("unable to decode auth.sendCode#a677244f: field api_hash: %w", err)
tl_auth_send_code_gen.go#L223: return fmt.Errorf("unable to decode auth.sendCode#a677244f: field settings: %w", err)
tl_auth_sent_code_gen.go#L165: return fmt.Errorf("can't encode auth.sentCode#5e002502 as nil")
tl_auth_sent_code_gen.go#L174: return fmt.Errorf("can't encode auth.sentCode#5e002502 as nil")
tl_auth_sent_code_gen.go#L183: return fmt.Errorf("unable to encode auth.sentCode#5e002502: field flags: %w", err)
tl_auth_sent_code_gen.go#L186: return fmt.Errorf("unable to encode auth.sentCode#5e002502: field type is nil")
tl_auth_sent_code_gen.go#L189: return fmt.Errorf("unable to encode auth.sentCode#5e002502: field type: %w", err)
tl_auth_sent_code_gen.go#L194: return fmt.Errorf("unable to encode auth.sentCode#5e002502: field next_type is nil")
tl_auth_sent_code_gen.go#L197: return fmt.Errorf("unable to encode auth.sentCode#5e002502: field next_type: %w", err)
tl_auth_sent_code_gen.go#L249: return fmt.Errorf("can't decode auth.sentCode#5e002502 to nil")
tl_auth_sent_code_gen.go#L252: return fmt.Errorf("unable to decode auth.sentCode#5e002502: %w", err)
tl_auth_sent_code_gen.go#L260: return fmt.Errorf("can't decode auth.sentCode#5e002502 to nil")
tl_auth_sent_code_gen.go#L264: return fmt.Errorf("unable to decode auth.sentCode#5e002502: field flags: %w", err)
tl_auth_sent_code_gen.go#L270: return fmt.Errorf("unable to decode auth.sentCode#5e002502: field type: %w", err)
tl_auth_sent_code_gen.go#L277: return fmt.Errorf("unable to decode auth.sentCode#5e002502: field phone_code_hash: %w", err)
tl_auth_sent_code_gen.go#L284: return fmt.Errorf("unable to decode auth.sentCode#5e002502: field next_type: %w", err)
tl_auth_sent_code_gen.go#L291: return fmt.Errorf("unable to decode auth.sentCode#5e002502: field timeout: %w", err)
tl_auth_sent_code_type_gen.go#L105: return fmt.Errorf("can't encode auth.sentCodeTypeApp#3dbb5986 as nil")
tl_auth_sent_code_type_gen.go#L114: return fmt.Errorf("can't encode auth.sentCodeTypeApp#3dbb5986 as nil")
tl_auth_sent_code_type_gen.go#L128: return fmt.Errorf("can't decode auth.sentCodeTypeApp#3dbb5986 to nil")
tl_auth_sent_code_type_gen.go#L131: return fmt.Errorf("unable to decode auth.sentCodeTypeApp#3dbb5986: %w", err)
tl_auth_sent_code_type_gen.go#L139: return fmt.Errorf("can't decode auth.sentCodeTypeApp#3dbb5986 to nil")
tl_auth_sent_code_type_gen.go#L144: return fmt.Errorf("unable to decode auth.sentCodeTypeApp#3dbb5986: field length: %w", err)
tl_auth_sent_code_type_gen.go#L237: return fmt.Errorf("can't encode auth.sentCodeTypeSms#c000bba2 as nil")
tl_auth_sent_code_type_gen.go#L246: return fmt.Errorf("can't encode auth.sentCodeTypeSms#c000bba2 as nil")
tl_auth_sent_code_type_gen.go#L260: return fmt.Errorf("can't decode auth.sentCodeTypeSms#c000bba2 to nil")
tl_auth_sent_code_type_gen.go#L263: return fmt.Errorf("unable to decode auth.sentCodeTypeSms#c000bba2: %w", err)
tl_auth_sent_code_type_gen.go#L271: return fmt.Errorf("can't decode auth.sentCodeTypeSms#c000bba2 to nil")
tl_auth_sent_code_type_gen.go#L276: return fmt.Errorf("unable to decode auth.sentCodeTypeSms#c000bba2: field length: %w", err)
tl_auth_sent_code_type_gen.go#L370: return fmt.Errorf("can't encode auth.sentCodeTypeCall#5353e5a7 as nil")
tl_auth_sent_code_type_gen.go#L379: return fmt.Errorf("can't encode auth.sentCodeTypeCall#5353e5a7 as nil")
tl_auth_sent_code_type_gen.go#L393: return fmt.Errorf("can't decode auth.sentCodeTypeCall#5353e5a7 to nil")
tl_auth_sent_code_type_gen.go#L396: return fmt.Errorf("unable to decode auth.sentCodeTypeCall#5353e5a7: %w", err)
tl_auth_sent_code_type_gen.go#L404: return fmt.Errorf("can't decode auth.sentCodeTypeCall#5353e5a7 to nil")
tl_auth_sent_code_type_gen.go#L409: return fmt.Errorf("unable to decode auth.sentCodeTypeCall#5353e5a7: field length: %w", err)
tl_auth_sent_code_type_gen.go#L507: return fmt.Errorf("can't encode auth.sentCodeTypeFlashCall#ab03c6d9 as nil")
tl_auth_sent_code_type_gen.go#L516: return fmt.Errorf("can't encode auth.sentCodeTypeFlashCall#ab03c6d9 as nil")
tl_auth_sent_code_type_gen.go#L530: return fmt.Errorf("can't decode auth.sentCodeTypeFlashCall#ab03c6d9 to nil")
tl_auth_sent_code_type_gen.go#L533: return fmt.Errorf("unable to decode auth.sentCodeTypeFlashCall#ab03c6d9: %w", err)
tl_auth_sent_code_type_gen.go#L541: return fmt.Errorf("can't decode auth.sentCodeTypeFlashCall#ab03c6d9 to nil")
tl_auth_sent_code_type_gen.go#L546: return fmt.Errorf("unable to decode auth.sentCodeTypeFlashCall#ab03c6d9: field pattern: %w", err)
tl_auth_sent_code_type_gen.go#L612: return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
tl_auth_sent_code_type_gen.go#L619: return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
tl_auth_sent_code_type_gen.go#L626: return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
tl_auth_sent_code_type_gen.go#L633: return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
tl_auth_sent_code_type_gen.go#L637: return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", bin.NewUnexpectedID(id))
tl_auth_sent_code_type_gen.go#L649: return fmt.Errorf("unable to decode AuthSentCodeTypeBox to nil")
tl_auth_sent_code_type_gen.go#L653: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_auth_sent_code_type_gen.go#L662: return fmt.Errorf("unable to encode AuthSentCodeTypeClass as nil")
tl_auth_sign_in_gen.go#L130: return fmt.Errorf("can't encode auth.signIn#bcd51581 as nil")
tl_auth_sign_in_gen.go#L139: return fmt.Errorf("can't encode auth.signIn#bcd51581 as nil")
tl_auth_sign_in_gen.go#L165: return fmt.Errorf("can't decode auth.signIn#bcd51581 to nil")
tl_auth_sign_in_gen.go#L168: return fmt.Errorf("unable to decode auth.signIn#bcd51581: %w", err)
tl_auth_sign_in_gen.go#L176: return fmt.Errorf("can't decode auth.signIn#bcd51581 to nil")
tl_auth_sign_in_gen.go#L181: return fmt.Errorf("unable to decode auth.signIn#bcd51581: field phone_number: %w", err)
tl_auth_sign_in_gen.go#L188: return fmt.Errorf("unable to decode auth.signIn#bcd51581: field phone_code_hash: %w", err)
tl_auth_sign_in_gen.go#L195: return fmt.Errorf("unable to decode auth.signIn#bcd51581: field phone_code: %w", err)
tl_auth_sign_up_gen.go#L138: return fmt.Errorf("can't encode auth.signUp#80eee427 as nil")
tl_auth_sign_up_gen.go#L147: return fmt.Errorf("can't encode auth.signUp#80eee427 as nil")
tl_auth_sign_up_gen.go#L179: return fmt.Errorf("can't decode auth.signUp#80eee427 to nil")
tl_auth_sign_up_gen.go#L182: return fmt.Errorf("unable to decode auth.signUp#80eee427: %w", err)
tl_auth_sign_up_gen.go#L190: return fmt.Errorf("can't decode auth.signUp#80eee427 to nil")
tl_auth_sign_up_gen.go#L195: return fmt.Errorf("unable to decode auth.signUp#80eee427: field phone_number: %w", err)
tl_auth_sign_up_gen.go#L202: return fmt.Errorf("unable to decode auth.signUp#80eee427: field phone_code_hash: %w", err)
tl_auth_sign_up_gen.go#L209: return fmt.Errorf("unable to decode auth.signUp#80eee427: field first_name: %w", err)
tl_auth_sign_up_gen.go#L216: return fmt.Errorf("unable to decode auth.signUp#80eee427: field last_name: %w", err)
tl_authorization_gen.go#L273: return fmt.Errorf("can't encode authorization#ad01d61d as nil")
tl_authorization_gen.go#L282: return fmt.Errorf("can't encode authorization#ad01d61d as nil")
tl_authorization_gen.go#L294: return fmt.Errorf("unable to encode authorization#ad01d61d: field flags: %w", err)
tl_authorization_gen.go#L422: return fmt.Errorf("can't decode authorization#ad01d61d to nil")
tl_authorization_gen.go#L425: return fmt.Errorf("unable to decode authorization#ad01d61d: %w", err)
tl_authorization_gen.go#L433: return fmt.Errorf("can't decode authorization#ad01d61d to nil")
tl_authorization_gen.go#L437: return fmt.Errorf("unable to decode authorization#ad01d61d: field flags: %w", err)
tl_authorization_gen.go#L446: return fmt.Errorf("unable to decode authorization#ad01d61d: field hash: %w", err)
tl_authorization_gen.go#L453: return fmt.Errorf("unable to decode authorization#ad01d61d: field device_model: %w", err)
tl_authorization_gen.go#L460: return fmt.Errorf("unable to decode authorization#ad01d61d: field platform: %w", err)
tl_authorization_gen.go#L467: return fmt.Errorf("unable to decode authorization#ad01d61d: field system_version: %w", err)
tl_authorization_gen.go#L474: return fmt.Errorf("unable to decode authorization#ad01d61d: field api_id: %w", err)
tl_authorization_gen.go#L481: return fmt.Errorf("unable to decode authorization#ad01d61d: field app_name: %w", err)
tl_authorization_gen.go#L488: return fmt.Errorf("unable to decode authorization#ad01d61d: field app_version: %w", err)
tl_authorization_gen.go#L495: return fmt.Errorf("unable to decode authorization#ad01d61d: field date_created: %w", err)
tl_authorization_gen.go#L502: return fmt.Errorf("unable to decode authorization#ad01d61d: field date_active: %w", err)
tl_authorization_gen.go#L509: return fmt.Errorf("unable to decode authorization#ad01d61d: field ip: %w", err)
tl_authorization_gen.go#L516: return fmt.Errorf("unable to decode authorization#ad01d61d: field country: %w", err)
tl_authorization_gen.go#L523: return fmt.Errorf("unable to decode authorization#ad01d61d: field region: %w", err)
tl_auto_download_settings_gen.go#L194: return fmt.Errorf("can't encode autoDownloadSettings#e04232f3 as nil")
tl_auto_download_settings_gen.go#L203: return fmt.Errorf("can't encode autoDownloadSettings#e04232f3 as nil")
tl_auto_download_settings_gen.go#L218: return fmt.Errorf("unable to encode autoDownloadSettings#e04232f3: field flags: %w", err)
tl_auto_download_settings_gen.go#L314: return fmt.Errorf("can't decode autoDownloadSettings#e04232f3 to nil")
tl_auto_download_settings_gen.go#L317: return fmt.Errorf("unable to decode autoDownloadSettings#e04232f3: %w", err)
tl_auto_download_settings_gen.go#L325: return fmt.Errorf("can't decode autoDownloadSettings#e04232f3 to nil")
tl_auto_download_settings_gen.go#L329: return fmt.Errorf("unable to decode autoDownloadSettings#e04232f3: field flags: %w", err)
tl_auto_download_settings_gen.go#L339: return fmt.Errorf("unable to decode autoDownloadSettings#e04232f3: field photo_size_max: %w", err)
tl_auto_download_settings_gen.go#L346: return fmt.Errorf("unable to decode autoDownloadSettings#e04232f3: field video_size_max: %w", err)
tl_auto_download_settings_gen.go#L353: return fmt.Errorf("unable to decode autoDownloadSettings#e04232f3: field file_size_max: %w", err)
tl_auto_download_settings_gen.go#L360: return fmt.Errorf("unable to decode autoDownloadSettings#e04232f3: field video_upload_maxbitrate: %w", err)
tl_bank_card_open_url_gen.go#L116: return fmt.Errorf("can't encode bankCardOpenUrl#f568028a as nil")
tl_bank_card_open_url_gen.go#L125: return fmt.Errorf("can't encode bankCardOpenUrl#f568028a as nil")
tl_bank_card_open_url_gen.go#L145: return fmt.Errorf("can't decode bankCardOpenUrl#f568028a to nil")
tl_bank_card_open_url_gen.go#L148: return fmt.Errorf("unable to decode bankCardOpenUrl#f568028a: %w", err)
tl_bank_card_open_url_gen.go#L156: return fmt.Errorf("can't decode bankCardOpenUrl#f568028a to nil")
tl_bank_card_open_url_gen.go#L161: return fmt.Errorf("unable to decode bankCardOpenUrl#f568028a: field url: %w", err)
tl_bank_card_open_url_gen.go#L168: return fmt.Errorf("unable to decode bankCardOpenUrl#f568028a: field name: %w", err)
tl_base_theme_gen.go#L88: return fmt.Errorf("can't encode baseThemeClassic#c3a12462 as nil")
tl_base_theme_gen.go#L97: return fmt.Errorf("can't encode baseThemeClassic#c3a12462 as nil")
tl_base_theme_gen.go#L105: return fmt.Errorf("can't decode baseThemeClassic#c3a12462 to nil")
tl_base_theme_gen.go#L108: return fmt.Errorf("unable to decode baseThemeClassic#c3a12462: %w", err)
tl_base_theme_gen.go#L116: return fmt.Errorf("can't decode baseThemeClassic#c3a12462 to nil")
tl_base_theme_gen.go#L190: return fmt.Errorf("can't encode baseThemeDay#fbd81688 as nil")
tl_base_theme_gen.go#L199: return fmt.Errorf("can't encode baseThemeDay#fbd81688 as nil")
tl_base_theme_gen.go#L207: return fmt.Errorf("can't decode baseThemeDay#fbd81688 to nil")
tl_base_theme_gen.go#L210: return fmt.Errorf("unable to decode baseThemeDay#fbd81688: %w", err)
tl_base_theme_gen.go#L218: return fmt.Errorf("can't decode baseThemeDay#fbd81688 to nil")
tl_base_theme_gen.go#L292: return fmt.Errorf("can't encode baseThemeNight#b7b31ea8 as nil")
tl_base_theme_gen.go#L301: return fmt.Errorf("can't encode baseThemeNight#b7b31ea8 as nil")
tl_base_theme_gen.go#L309: return fmt.Errorf("can't decode baseThemeNight#b7b31ea8 to nil")
tl_base_theme_gen.go#L312: return fmt.Errorf("unable to decode baseThemeNight#b7b31ea8: %w", err)
tl_base_theme_gen.go#L320: return fmt.Errorf("can't decode baseThemeNight#b7b31ea8 to nil")
tl_base_theme_gen.go#L394: return fmt.Errorf("can't encode baseThemeTinted#6d5f77ee as nil")
tl_base_theme_gen.go#L403: return fmt.Errorf("can't encode baseThemeTinted#6d5f77ee as nil")
tl_base_theme_gen.go#L411: return fmt.Errorf("can't decode baseThemeTinted#6d5f77ee to nil")
tl_base_theme_gen.go#L414: return fmt.Errorf("unable to decode baseThemeTinted#6d5f77ee: %w", err)
tl_base_theme_gen.go#L422: return fmt.Errorf("can't decode baseThemeTinted#6d5f77ee to nil")
tl_base_theme_gen.go#L496: return fmt.Errorf("can't encode baseThemeArctic#5b11125a as nil")
tl_base_theme_gen.go#L505: return fmt.Errorf("can't encode baseThemeArctic#5b11125a as nil")
tl_base_theme_gen.go#L513: return fmt.Errorf("can't decode baseThemeArctic#5b11125a to nil")
tl_base_theme_gen.go#L516: return fmt.Errorf("unable to decode baseThemeArctic#5b11125a: %w", err)
tl_base_theme_gen.go#L524: return fmt.Errorf("can't decode baseThemeArctic#5b11125a to nil")
tl_base_theme_gen.go#L589: return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
tl_base_theme_gen.go#L596: return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
tl_base_theme_gen.go#L603: return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
tl_base_theme_gen.go#L610: return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
tl_base_theme_gen.go#L617: return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
tl_base_theme_gen.go#L621: return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", bin.NewUnexpectedID(id))
tl_base_theme_gen.go#L633: return fmt.Errorf("unable to decode BaseThemeBox to nil")
tl_base_theme_gen.go#L637: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_base_theme_gen.go#L646: return fmt.Errorf("unable to encode BaseThemeClass as nil")
tl_bool_gen.go#L88: return fmt.Errorf("can't encode boolFalse#bc799737 as nil")
tl_bool_gen.go#L97: return fmt.Errorf("can't encode boolFalse#bc799737 as nil")
tl_bool_gen.go#L105: return fmt.Errorf("can't decode boolFalse#bc799737 to nil")
tl_bool_gen.go#L108: return fmt.Errorf("unable to decode boolFalse#bc799737: %w", err)
tl_bool_gen.go#L116: return fmt.Errorf("can't decode boolFalse#bc799737 to nil")
tl_bool_gen.go#L190: return fmt.Errorf("can't encode boolTrue#997275b5 as nil")
tl_bool_gen.go#L199: return fmt.Errorf("can't encode boolTrue#997275b5 as nil")
tl_bool_gen.go#L207: return fmt.Errorf("can't decode boolTrue#997275b5 to nil")
tl_bool_gen.go#L210: return fmt.Errorf("unable to decode boolTrue#997275b5: %w", err)
tl_bool_gen.go#L218: return fmt.Errorf("can't decode boolTrue#997275b5 to nil")
tl_bool_gen.go#L280: return nil, fmt.Errorf("unable to decode BoolClass: %w", err)
tl_bool_gen.go#L287: return nil, fmt.Errorf("unable to decode BoolClass: %w", err)
tl_bool_gen.go#L291: return nil, fmt.Errorf("unable to decode BoolClass: %w", bin.NewUnexpectedID(id))
tl_bool_gen.go#L303: return fmt.Errorf("unable to decode BoolBox to nil")
tl_bool_gen.go#L307: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_bool_gen.go#L316: return fmt.Errorf("unable to encode BoolClass as nil")
tl_bot_command_gen.go#L116: return fmt.Errorf("can't encode botCommand#c27ac8c7 as nil")
tl_bot_command_gen.go#L125: return fmt.Errorf("can't encode botCommand#c27ac8c7 as nil")
tl_bot_command_gen.go#L145: return fmt.Errorf("can't decode botCommand#c27ac8c7 to nil")
tl_bot_command_gen.go#L148: return fmt.Errorf("unable to decode botCommand#c27ac8c7: %w", err)
tl_bot_command_gen.go#L156: return fmt.Errorf("can't decode botCommand#c27ac8c7 to nil")
tl_bot_command_gen.go#L161: return fmt.Errorf("unable to decode botCommand#c27ac8c7: field command: %w", err)
tl_bot_command_gen.go#L168: return fmt.Errorf("unable to decode botCommand#c27ac8c7: field description: %w", err)
tl_bot_info_gen.go#L127: return fmt.Errorf("can't encode botInfo#98e81d3a as nil")
tl_bot_info_gen.go#L136: return fmt.Errorf("can't encode botInfo#98e81d3a as nil")
tl_bot_info_gen.go#L143: return fmt.Errorf("unable to encode botInfo#98e81d3a: field commands element with index %d: %w", idx, err)
tl_bot_info_gen.go#L167: return fmt.Errorf("can't decode botInfo#98e81d3a to nil")
tl_bot_info_gen.go#L170: return fmt.Errorf("unable to decode botInfo#98e81d3a: %w", err)
tl_bot_info_gen.go#L178: return fmt.Errorf("can't decode botInfo#98e81d3a to nil")
tl_bot_info_gen.go#L183: return fmt.Errorf("unable to decode botInfo#98e81d3a: field user_id: %w", err)
tl_bot_info_gen.go#L190: return fmt.Errorf("unable to decode botInfo#98e81d3a: field description: %w", err)
tl_bot_info_gen.go#L197: return fmt.Errorf("unable to decode botInfo#98e81d3a: field commands: %w", err)
tl_bot_info_gen.go#L202: return fmt.Errorf("unable to decode botInfo#98e81d3a: field commands: %w", err)
tl_bot_inline_message_gen.go#L153: return fmt.Errorf("can't encode botInlineMessageMediaAuto#764cf810 as nil")
tl_bot_inline_message_gen.go#L162: return fmt.Errorf("can't encode botInlineMessageMediaAuto#764cf810 as nil")
tl_bot_inline_message_gen.go#L171: return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field flags: %w", err)
tl_bot_inline_message_gen.go#L178: return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field entities element with index %d is nil", idx)
tl_bot_inline_message_gen.go#L181: return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field entities element with index %d: %w", idx, err)
tl_bot_inline_message_gen.go#L187: return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field reply_markup is nil")
tl_bot_inline_message_gen.go#L190: return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L242: return fmt.Errorf("can't decode botInlineMessageMediaAuto#764cf810 to nil")
tl_bot_inline_message_gen.go#L245: return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: %w", err)
tl_bot_inline_message_gen.go#L253: return fmt.Errorf("can't decode botInlineMessageMediaAuto#764cf810 to nil")
tl_bot_inline_message_gen.go#L257: return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field flags: %w", err)
tl_bot_inline_message_gen.go#L263: return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field message: %w", err)
tl_bot_inline_message_gen.go#L270: return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field entities: %w", err)
tl_bot_inline_message_gen.go#L275: return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field entities: %w", err)
tl_bot_inline_message_gen.go#L283: return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L433: return fmt.Errorf("can't encode botInlineMessageText#8c7f65e2 as nil")
tl_bot_inline_message_gen.go#L442: return fmt.Errorf("can't encode botInlineMessageText#8c7f65e2 as nil")
tl_bot_inline_message_gen.go#L454: return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field flags: %w", err)
tl_bot_inline_message_gen.go#L461: return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field entities element with index %d is nil", idx)
tl_bot_inline_message_gen.go#L464: return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field entities element with index %d: %w", idx, err)
tl_bot_inline_message_gen.go#L470: return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field reply_markup is nil")
tl_bot_inline_message_gen.go#L473: return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L541: return fmt.Errorf("can't decode botInlineMessageText#8c7f65e2 to nil")
tl_bot_inline_message_gen.go#L544: return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: %w", err)
tl_bot_inline_message_gen.go#L552: return fmt.Errorf("can't decode botInlineMessageText#8c7f65e2 to nil")
tl_bot_inline_message_gen.go#L556: return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field flags: %w", err)
tl_bot_inline_message_gen.go#L563: return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field message: %w", err)
tl_bot_inline_message_gen.go#L570: return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field entities: %w", err)
tl_bot_inline_message_gen.go#L575: return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field entities: %w", err)
tl_bot_inline_message_gen.go#L583: return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L759: return fmt.Errorf("can't encode botInlineMessageMediaGeo#51846fd as nil")
tl_bot_inline_message_gen.go#L768: return fmt.Errorf("can't encode botInlineMessageMediaGeo#51846fd as nil")
tl_bot_inline_message_gen.go#L783: return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field flags: %w", err)
tl_bot_inline_message_gen.go#L786: return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field geo is nil")
tl_bot_inline_message_gen.go#L789: return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field geo: %w", err)
tl_bot_inline_message_gen.go#L802: return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field reply_markup is nil")
tl_bot_inline_message_gen.go#L805: return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L879: return fmt.Errorf("can't decode botInlineMessageMediaGeo#51846fd to nil")
tl_bot_inline_message_gen.go#L882: return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: %w", err)
tl_bot_inline_message_gen.go#L890: return fmt.Errorf("can't decode botInlineMessageMediaGeo#51846fd to nil")
tl_bot_inline_message_gen.go#L894: return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field flags: %w", err)
tl_bot_inline_message_gen.go#L900: return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field geo: %w", err)
tl_bot_inline_message_gen.go#L907: return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field heading: %w", err)
tl_bot_inline_message_gen.go#L914: return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field period: %w", err)
tl_bot_inline_message_gen.go#L921: return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field proximity_notification_radius: %w", err)
tl_bot_inline_message_gen.go#L928: return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L1101: return fmt.Errorf("can't encode botInlineMessageMediaVenue#8a86659c as nil")
tl_bot_inline_message_gen.go#L1110: return fmt.Errorf("can't encode botInlineMessageMediaVenue#8a86659c as nil")
tl_bot_inline_message_gen.go#L1116: return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field flags: %w", err)
tl_bot_inline_message_gen.go#L1119: return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field geo is nil")
tl_bot_inline_message_gen.go#L1122: return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field geo: %w", err)
tl_bot_inline_message_gen.go#L1131: return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field reply_markup is nil")
tl_bot_inline_message_gen.go#L1134: return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L1188: return fmt.Errorf("can't decode botInlineMessageMediaVenue#8a86659c to nil")
tl_bot_inline_message_gen.go#L1191: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: %w", err)
tl_bot_inline_message_gen.go#L1199: return fmt.Errorf("can't decode botInlineMessageMediaVenue#8a86659c to nil")
tl_bot_inline_message_gen.go#L1203: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field flags: %w", err)
tl_bot_inline_message_gen.go#L1209: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field geo: %w", err)
tl_bot_inline_message_gen.go#L1216: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field title: %w", err)
tl_bot_inline_message_gen.go#L1223: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field address: %w", err)
tl_bot_inline_message_gen.go#L1230: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field provider: %w", err)
tl_bot_inline_message_gen.go#L1237: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field venue_id: %w", err)
tl_bot_inline_message_gen.go#L1244: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field venue_type: %w", err)
tl_bot_inline_message_gen.go#L1251: return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L1402: return fmt.Errorf("can't encode botInlineMessageMediaContact#18d1cdc2 as nil")
tl_bot_inline_message_gen.go#L1411: return fmt.Errorf("can't encode botInlineMessageMediaContact#18d1cdc2 as nil")
tl_bot_inline_message_gen.go#L1417: return fmt.Errorf("unable to encode botInlineMessageMediaContact#18d1cdc2: field flags: %w", err)
tl_bot_inline_message_gen.go#L1425: return fmt.Errorf("unable to encode botInlineMessageMediaContact#18d1cdc2: field reply_markup is nil")
tl_bot_inline_message_gen.go#L1428: return fmt.Errorf("unable to encode botInlineMessageMediaContact#18d1cdc2: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L1472: return fmt.Errorf("can't decode botInlineMessageMediaContact#18d1cdc2 to nil")
tl_bot_inline_message_gen.go#L1475: return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: %w", err)
tl_bot_inline_message_gen.go#L1483: return fmt.Errorf("can't decode botInlineMessageMediaContact#18d1cdc2 to nil")
tl_bot_inline_message_gen.go#L1487: return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field flags: %w", err)
tl_bot_inline_message_gen.go#L1493: return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field phone_number: %w", err)
tl_bot_inline_message_gen.go#L1500: return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field first_name: %w", err)
tl_bot_inline_message_gen.go#L1507: return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field last_name: %w", err)
tl_bot_inline_message_gen.go#L1514: return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field vcard: %w", err)
tl_bot_inline_message_gen.go#L1521: return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L1709: return fmt.Errorf("can't encode botInlineMessageMediaInvoice#354a9b09 as nil")
tl_bot_inline_message_gen.go#L1718: return fmt.Errorf("can't encode botInlineMessageMediaInvoice#354a9b09 as nil")
tl_bot_inline_message_gen.go#L1733: return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field flags: %w", err)
tl_bot_inline_message_gen.go#L1739: return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field photo is nil")
tl_bot_inline_message_gen.go#L1742: return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field photo: %w", err)
tl_bot_inline_message_gen.go#L1749: return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field reply_markup is nil")
tl_bot_inline_message_gen.go#L1752: return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L1843: return fmt.Errorf("can't decode botInlineMessageMediaInvoice#354a9b09 to nil")
tl_bot_inline_message_gen.go#L1846: return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: %w", err)
tl_bot_inline_message_gen.go#L1854: return fmt.Errorf("can't decode botInlineMessageMediaInvoice#354a9b09 to nil")
tl_bot_inline_message_gen.go#L1858: return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field flags: %w", err)
tl_bot_inline_message_gen.go#L1866: return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field title: %w", err)
tl_bot_inline_message_gen.go#L1873: return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field description: %w", err)
tl_bot_inline_message_gen.go#L1880: return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field photo: %w", err)
tl_bot_inline_message_gen.go#L1887: return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field currency: %w", err)
tl_bot_inline_message_gen.go#L1894: return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field total_amount: %w", err)
tl_bot_inline_message_gen.go#L1901: return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field reply_markup: %w", err)
tl_bot_inline_message_gen.go#L1972: return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
tl_bot_inline_message_gen.go#L1979: return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
tl_bot_inline_message_gen.go#L1986: return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
tl_bot_inline_message_gen.go#L1993: return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
tl_bot_inline_message_gen.go#L2000: return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
tl_bot_inline_message_gen.go#L2007: return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
tl_bot_inline_message_gen.go#L2011: return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", bin.NewUnexpectedID(id))
tl_bot_inline_message_gen.go#L2023: return fmt.Errorf("unable to decode BotInlineMessageBox to nil")
tl_bot_inline_message_gen.go#L2027: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_bot_inline_message_gen.go#L2036: return fmt.Errorf("unable to encode BotInlineMessageClass as nil")
tl_bot_inline_result_gen.go#L223: return fmt.Errorf("can't encode botInlineResult#11965f3a as nil")
tl_bot_inline_result_gen.go#L232: return fmt.Errorf("can't encode botInlineResult#11965f3a as nil")
tl_bot_inline_result_gen.go#L250: return fmt.Errorf("unable to encode botInlineResult#11965f3a: field flags: %w", err)
tl_bot_inline_result_gen.go#L265: return fmt.Errorf("unable to encode botInlineResult#11965f3a: field thumb is nil")
tl_bot_inline_result_gen.go#L268: return fmt.Errorf("unable to encode botInlineResult#11965f3a: field thumb: %w", err)
tl_bot_inline_result_gen.go#L273: return fmt.Errorf("unable to encode botInlineResult#11965f3a: field content is nil")
tl_bot_inline_result_gen.go#L276: return fmt.Errorf("unable to encode botInlineResult#11965f3a: field content: %w", err)
tl_bot_inline_result_gen.go#L280: return fmt.Errorf("unable to encode botInlineResult#11965f3a: field send_message is nil")
tl_bot_inline_result_gen.go#L283: return fmt.Errorf("unable to encode botInlineResult#11965f3a: field send_message: %w", err)
tl_bot_inline_result_gen.go#L381: return fmt.Errorf("can't decode botInlineResult#11965f3a to nil")
tl_bot_inline_result_gen.go#L384: return fmt.Errorf("unable to decode botInlineResult#11965f3a: %w", err)
tl_bot_inline_result_gen.go#L392: return fmt.Errorf("can't decode botInlineResult#11965f3a to nil")
tl_bot_inline_result_gen.go#L396: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field flags: %w", err)
tl_bot_inline_result_gen.go#L402: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field id: %w", err)
tl_bot_inline_result_gen.go#L409: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field type: %w", err)
tl_bot_inline_result_gen.go#L416: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field title: %w", err)
tl_bot_inline_result_gen.go#L423: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field description: %w", err)
tl_bot_inline_result_gen.go#L430: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field url: %w", err)
tl_bot_inline_result_gen.go#L437: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field thumb: %w", err)
tl_bot_inline_result_gen.go#L444: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field content: %w", err)
tl_bot_inline_result_gen.go#L451: return fmt.Errorf("unable to decode botInlineResult#11965f3a: field send_message: %w", err)
tl_bot_inline_result_gen.go#L649: return fmt.Errorf("can't encode botInlineMediaResult#17db940b as nil")
tl_bot_inline_result_gen.go#L658: return fmt.Errorf("can't encode botInlineMediaResult#17db940b as nil")
tl_bot_inline_result_gen.go#L673: return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field flags: %w", err)
tl_bot_inline_result_gen.go#L679: return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field photo is nil")
tl_bot_inline_result_gen.go#L682: return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field photo: %w", err)
tl_bot_inline_result_gen.go#L687: return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field document is nil")
tl_bot_inline_result_gen.go#L690: return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field document: %w", err)
tl_bot_inline_result_gen.go#L700: return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field send_message is nil")
tl_bot_inline_result_gen.go#L703: return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field send_message: %w", err)
tl_bot_inline_result_gen.go#L786: return fmt.Errorf("can't decode botInlineMediaResult#17db940b to nil")
tl_bot_inline_result_gen.go#L789: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: %w", err)
tl_bot_inline_result_gen.go#L797: return fmt.Errorf("can't decode botInlineMediaResult#17db940b to nil")
tl_bot_inline_result_gen.go#L801: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field flags: %w", err)
tl_bot_inline_result_gen.go#L807: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field id: %w", err)
tl_bot_inline_result_gen.go#L814: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field type: %w", err)
tl_bot_inline_result_gen.go#L821: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field photo: %w", err)
tl_bot_inline_result_gen.go#L828: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field document: %w", err)
tl_bot_inline_result_gen.go#L835: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field title: %w", err)
tl_bot_inline_result_gen.go#L842: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field description: %w", err)
tl_bot_inline_result_gen.go#L849: return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field send_message: %w", err)
tl_bot_inline_result_gen.go#L931: return nil, fmt.Errorf("unable to decode BotInlineResultClass: %w", err)
tl_bot_inline_result_gen.go#L938: return nil, fmt.Errorf("unable to decode BotInlineResultClass: %w", err)
tl_bot_inline_result_gen.go#L942: return nil, fmt.Errorf("unable to decode BotInlineResultClass: %w", bin.NewUnexpectedID(id))
tl_bot_inline_result_gen.go#L954: return fmt.Errorf("unable to decode BotInlineResultBox to nil")
tl_bot_inline_result_gen.go#L958: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_bot_inline_result_gen.go#L967: return fmt.Errorf("unable to encode BotInlineResultClass as nil")
tl_bots_answer_webhook_json_query_gen.go#L116: return fmt.Errorf("can't encode bots.answerWebhookJSONQuery#e6213f4d as nil")
tl_bots_answer_webhook_json_query_gen.go#L125: return fmt.Errorf("can't encode bots.answerWebhookJSONQuery#e6213f4d as nil")
tl_bots_answer_webhook_json_query_gen.go#L129: return fmt.Errorf("unable to encode bots.answerWebhookJSONQuery#e6213f4d: field data: %w", err)
tl_bots_answer_webhook_json_query_gen.go#L147: return fmt.Errorf("can't decode bots.answerWebhookJSONQuery#e6213f4d to nil")
tl_bots_answer_webhook_json_query_gen.go#L150: return fmt.Errorf("unable to decode bots.answerWebhookJSONQuery#e6213f4d: %w", err)
tl_bots_answer_webhook_json_query_gen.go#L158: return fmt.Errorf("can't decode bots.answerWebhookJSONQuery#e6213f4d to nil")
tl_bots_answer_webhook_json_query_gen.go#L163: return fmt.Errorf("unable to decode bots.answerWebhookJSONQuery#e6213f4d: field query_id: %w", err)
tl_bots_answer_webhook_json_query_gen.go#L169: return fmt.Errorf("unable to decode bots.answerWebhookJSONQuery#e6213f4d: field data: %w", err)
tl_bots_send_custom_request_gen.go#L116: return fmt.Errorf("can't encode bots.sendCustomRequest#aa2769ed as nil")
tl_bots_send_custom_request_gen.go#L125: return fmt.Errorf("can't encode bots.sendCustomRequest#aa2769ed as nil")
tl_bots_send_custom_request_gen.go#L129: return fmt.Errorf("unable to encode bots.sendCustomRequest#aa2769ed: field params: %w", err)
tl_bots_send_custom_request_gen.go#L147: return fmt.Errorf("can't decode bots.sendCustomRequest#aa2769ed to nil")
tl_bots_send_custom_request_gen.go#L150: return fmt.Errorf("unable to decode bots.sendCustomRequest#aa2769ed: %w", err)
tl_bots_send_custom_request_gen.go#L158: return fmt.Errorf("can't decode bots.sendCustomRequest#aa2769ed to nil")
tl_bots_send_custom_request_gen.go#L163: return fmt.Errorf("unable to decode bots.sendCustomRequest#aa2769ed: field custom_method: %w", err)
tl_bots_send_custom_request_gen.go#L169: return fmt.Errorf("unable to decode bots.sendCustomRequest#aa2769ed: field params: %w", err)
tl_bots_set_bot_commands_gen.go#L105: return fmt.Errorf("can't encode bots.setBotCommands#805d46f6 as nil")
tl_bots_set_bot_commands_gen.go#L114: return fmt.Errorf("can't encode bots.setBotCommands#805d46f6 as nil")
tl_bots_set_bot_commands_gen.go#L119: return fmt.Errorf("unable to encode bots.setBotCommands#805d46f6: field commands element with index %d: %w", idx, err)
tl_bots_set_bot_commands_gen.go#L133: return fmt.Errorf("can't decode bots.setBotCommands#805d46f6 to nil")
tl_bots_set_bot_commands_gen.go#L136: return fmt.Errorf("unable to decode bots.setBotCommands#805d46f6: %w", err)
tl_bots_set_bot_commands_gen.go#L144: return fmt.Errorf("can't decode bots.setBotCommands#805d46f6 to nil")
tl_bots_set_bot_commands_gen.go#L149: return fmt.Errorf("unable to decode bots.setBotCommands#805d46f6: field commands: %w", err)
tl_bots_set_bot_commands_gen.go#L154: return fmt.Errorf("unable to decode bots.setBotCommands#805d46f6: field commands: %w", err)
tl_cdn_config_gen.go#L111: return fmt.Errorf("can't encode cdnConfig#5725e40a as nil")
tl_cdn_config_gen.go#L120: return fmt.Errorf("can't encode cdnConfig#5725e40a as nil")
tl_cdn_config_gen.go#L125: return fmt.Errorf("unable to encode cdnConfig#5725e40a: field public_keys element with index %d: %w", idx, err)
tl_cdn_config_gen.go#L139: return fmt.Errorf("can't decode cdnConfig#5725e40a to nil")
tl_cdn_config_gen.go#L142: return fmt.Errorf("unable to decode cdnConfig#5725e40a: %w", err)
tl_cdn_config_gen.go#L150: return fmt.Errorf("can't decode cdnConfig#5725e40a to nil")
tl_cdn_config_gen.go#L155: return fmt.Errorf("unable to decode cdnConfig#5725e40a: field public_keys: %w", err)
tl_cdn_config_gen.go#L160: return fmt.Errorf("unable to decode cdnConfig#5725e40a: field public_keys: %w", err)
tl_cdn_public_key_gen.go#L122: return fmt.Errorf("can't encode cdnPublicKey#c982eaba as nil")
tl_cdn_public_key_gen.go#L131: return fmt.Errorf("can't encode cdnPublicKey#c982eaba as nil")
tl_cdn_public_key_gen.go#L151: return fmt.Errorf("can't decode cdnPublicKey#c982eaba to nil")
tl_cdn_public_key_gen.go#L154: return fmt.Errorf("unable to decode cdnPublicKey#c982eaba: %w", err)
tl_cdn_public_key_gen.go#L162: return fmt.Errorf("can't decode cdnPublicKey#c982eaba to nil")
tl_cdn_public_key_gen.go#L167: return fmt.Errorf("unable to decode cdnPublicKey#c982eaba: field dc_id: %w", err)
tl_cdn_public_key_gen.go#L174: return fmt.Errorf("unable to decode cdnPublicKey#c982eaba: field public_key: %w", err)
tl_channel_admin_log_event_action_gen.go#L116: return fmt.Errorf("can't encode channelAdminLogEventActionChangeTitle#e6dfb825 as nil")
tl_channel_admin_log_event_action_gen.go#L125: return fmt.Errorf("can't encode channelAdminLogEventActionChangeTitle#e6dfb825 as nil")
tl_channel_admin_log_event_action_gen.go#L145: return fmt.Errorf("can't decode channelAdminLogEventActionChangeTitle#e6dfb825 to nil")
tl_channel_admin_log_event_action_gen.go#L148: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeTitle#e6dfb825: %w", err)
tl_channel_admin_log_event_action_gen.go#L156: return fmt.Errorf("can't decode channelAdminLogEventActionChangeTitle#e6dfb825 to nil")
tl_channel_admin_log_event_action_gen.go#L161: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeTitle#e6dfb825: field prev_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L168: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeTitle#e6dfb825: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L272: return fmt.Errorf("can't encode channelAdminLogEventActionChangeAbout#55188a2e as nil")
tl_channel_admin_log_event_action_gen.go#L281: return fmt.Errorf("can't encode channelAdminLogEventActionChangeAbout#55188a2e as nil")
tl_channel_admin_log_event_action_gen.go#L301: return fmt.Errorf("can't decode channelAdminLogEventActionChangeAbout#55188a2e to nil")
tl_channel_admin_log_event_action_gen.go#L304: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAbout#55188a2e: %w", err)
tl_channel_admin_log_event_action_gen.go#L312: return fmt.Errorf("can't decode channelAdminLogEventActionChangeAbout#55188a2e to nil")
tl_channel_admin_log_event_action_gen.go#L317: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAbout#55188a2e: field prev_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L324: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAbout#55188a2e: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L428: return fmt.Errorf("can't encode channelAdminLogEventActionChangeUsername#6a4afc38 as nil")
tl_channel_admin_log_event_action_gen.go#L437: return fmt.Errorf("can't encode channelAdminLogEventActionChangeUsername#6a4afc38 as nil")
tl_channel_admin_log_event_action_gen.go#L457: return fmt.Errorf("can't decode channelAdminLogEventActionChangeUsername#6a4afc38 to nil")
tl_channel_admin_log_event_action_gen.go#L460: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsername#6a4afc38: %w", err)
tl_channel_admin_log_event_action_gen.go#L468: return fmt.Errorf("can't decode channelAdminLogEventActionChangeUsername#6a4afc38 to nil")
tl_channel_admin_log_event_action_gen.go#L473: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsername#6a4afc38: field prev_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L480: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsername#6a4afc38: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L586: return fmt.Errorf("can't encode channelAdminLogEventActionChangePhoto#434bd2af as nil")
tl_channel_admin_log_event_action_gen.go#L595: return fmt.Errorf("can't encode channelAdminLogEventActionChangePhoto#434bd2af as nil")
tl_channel_admin_log_event_action_gen.go#L598: return fmt.Errorf("unable to encode channelAdminLogEventActionChangePhoto#434bd2af: field prev_photo is nil")
tl_channel_admin_log_event_action_gen.go#L601: return fmt.Errorf("unable to encode channelAdminLogEventActionChangePhoto#434bd2af: field prev_photo: %w", err)
tl_channel_admin_log_event_action_gen.go#L604: return fmt.Errorf("unable to encode channelAdminLogEventActionChangePhoto#434bd2af: field new_photo is nil")
tl_channel_admin_log_event_action_gen.go#L607: return fmt.Errorf("unable to encode channelAdminLogEventActionChangePhoto#434bd2af: field new_photo: %w", err)
tl_channel_admin_log_event_action_gen.go#L625: return fmt.Errorf("can't decode channelAdminLogEventActionChangePhoto#434bd2af to nil")
tl_channel_admin_log_event_action_gen.go#L628: return fmt.Errorf("unable to decode channelAdminLogEventActionChangePhoto#434bd2af: %w", err)
tl_channel_admin_log_event_action_gen.go#L636: return fmt.Errorf("can't decode channelAdminLogEventActionChangePhoto#434bd2af to nil")
tl_channel_admin_log_event_action_gen.go#L641: return fmt.Errorf("unable to decode channelAdminLogEventActionChangePhoto#434bd2af: field prev_photo: %w", err)
tl_channel_admin_log_event_action_gen.go#L648: return fmt.Errorf("unable to decode channelAdminLogEventActionChangePhoto#434bd2af: field new_photo: %w", err)
tl_channel_admin_log_event_action_gen.go#L741: return fmt.Errorf("can't encode channelAdminLogEventActionToggleInvites#1b7907ae as nil")
tl_channel_admin_log_event_action_gen.go#L750: return fmt.Errorf("can't encode channelAdminLogEventActionToggleInvites#1b7907ae as nil")
tl_channel_admin_log_event_action_gen.go#L764: return fmt.Errorf("can't decode channelAdminLogEventActionToggleInvites#1b7907ae to nil")
tl_channel_admin_log_event_action_gen.go#L767: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleInvites#1b7907ae: %w", err)
tl_channel_admin_log_event_action_gen.go#L775: return fmt.Errorf("can't decode channelAdminLogEventActionToggleInvites#1b7907ae to nil")
tl_channel_admin_log_event_action_gen.go#L780: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleInvites#1b7907ae: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L875: return fmt.Errorf("can't encode channelAdminLogEventActionToggleSignatures#26ae0971 as nil")
tl_channel_admin_log_event_action_gen.go#L884: return fmt.Errorf("can't encode channelAdminLogEventActionToggleSignatures#26ae0971 as nil")
tl_channel_admin_log_event_action_gen.go#L898: return fmt.Errorf("can't decode channelAdminLogEventActionToggleSignatures#26ae0971 to nil")
tl_channel_admin_log_event_action_gen.go#L901: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSignatures#26ae0971: %w", err)
tl_channel_admin_log_event_action_gen.go#L909: return fmt.Errorf("can't decode channelAdminLogEventActionToggleSignatures#26ae0971 to nil")
tl_channel_admin_log_event_action_gen.go#L914: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSignatures#26ae0971: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L1009: return fmt.Errorf("can't encode channelAdminLogEventActionUpdatePinned#e9e82c18 as nil")
tl_channel_admin_log_event_action_gen.go#L1018: return fmt.Errorf("can't encode channelAdminLogEventActionUpdatePinned#e9e82c18 as nil")
tl_channel_admin_log_event_action_gen.go#L1021: return fmt.Errorf("unable to encode channelAdminLogEventActionUpdatePinned#e9e82c18: field message is nil")
tl_channel_admin_log_event_action_gen.go#L1024: return fmt.Errorf("unable to encode channelAdminLogEventActionUpdatePinned#e9e82c18: field message: %w", err)
tl_channel_admin_log_event_action_gen.go#L1037: return fmt.Errorf("can't decode channelAdminLogEventActionUpdatePinned#e9e82c18 to nil")
tl_channel_admin_log_event_action_gen.go#L1040: return fmt.Errorf("unable to decode channelAdminLogEventActionUpdatePinned#e9e82c18: %w", err)
tl_channel_admin_log_event_action_gen.go#L1048: return fmt.Errorf("can't decode channelAdminLogEventActionUpdatePinned#e9e82c18 to nil")
tl_channel_admin_log_event_action_gen.go#L1053: return fmt.Errorf("unable to decode channelAdminLogEventActionUpdatePinned#e9e82c18: field message: %w", err)
tl_channel_admin_log_event_action_gen.go#L1159: return fmt.Errorf("can't encode channelAdminLogEventActionEditMessage#709b2405 as nil")
tl_channel_admin_log_event_action_gen.go#L1168: return fmt.Errorf("can't encode channelAdminLogEventActionEditMessage#709b2405 as nil")
tl_channel_admin_log_event_action_gen.go#L1171: return fmt.Errorf("unable to encode channelAdminLogEventActionEditMessage#709b2405: field prev_message is nil")
tl_channel_admin_log_event_action_gen.go#L1174: return fmt.Errorf("unable to encode channelAdminLogEventActionEditMessage#709b2405: field prev_message: %w", err)
tl_channel_admin_log_event_action_gen.go#L1177: return fmt.Errorf("unable to encode channelAdminLogEventActionEditMessage#709b2405: field new_message is nil")
tl_channel_admin_log_event_action_gen.go#L1180: return fmt.Errorf("unable to encode channelAdminLogEventActionEditMessage#709b2405: field new_message: %w", err)
tl_channel_admin_log_event_action_gen.go#L1198: return fmt.Errorf("can't decode channelAdminLogEventActionEditMessage#709b2405 to nil")
tl_channel_admin_log_event_action_gen.go#L1201: return fmt.Errorf("unable to decode channelAdminLogEventActionEditMessage#709b2405: %w", err)
tl_channel_admin_log_event_action_gen.go#L1209: return fmt.Errorf("can't decode channelAdminLogEventActionEditMessage#709b2405 to nil")
tl_channel_admin_log_event_action_gen.go#L1214: return fmt.Errorf("unable to decode channelAdminLogEventActionEditMessage#709b2405: field prev_message: %w", err)
tl_channel_admin_log_event_action_gen.go#L1221: return fmt.Errorf("unable to decode channelAdminLogEventActionEditMessage#709b2405: field new_message: %w", err)
tl_channel_admin_log_event_action_gen.go#L1314: return fmt.Errorf("can't encode channelAdminLogEventActionDeleteMessage#42e047bb as nil")
tl_channel_admin_log_event_action_gen.go#L1323: return fmt.Errorf("can't encode channelAdminLogEventActionDeleteMessage#42e047bb as nil")
tl_channel_admin_log_event_action_gen.go#L1326: return fmt.Errorf("unable to encode channelAdminLogEventActionDeleteMessage#42e047bb: field message is nil")
tl_channel_admin_log_event_action_gen.go#L1329: return fmt.Errorf("unable to encode channelAdminLogEventActionDeleteMessage#42e047bb: field message: %w", err)
tl_channel_admin_log_event_action_gen.go#L1342: return fmt.Errorf("can't decode channelAdminLogEventActionDeleteMessage#42e047bb to nil")
tl_channel_admin_log_event_action_gen.go#L1345: return fmt.Errorf("unable to decode channelAdminLogEventActionDeleteMessage#42e047bb: %w", err)
tl_channel_admin_log_event_action_gen.go#L1353: return fmt.Errorf("can't decode channelAdminLogEventActionDeleteMessage#42e047bb to nil")
tl_channel_admin_log_event_action_gen.go#L1358: return fmt.Errorf("unable to decode channelAdminLogEventActionDeleteMessage#42e047bb: field message: %w", err)
tl_channel_admin_log_event_action_gen.go#L1437: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoin#183040d3 as nil")
tl_channel_admin_log_event_action_gen.go#L1446: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoin#183040d3 as nil")
tl_channel_admin_log_event_action_gen.go#L1454: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoin#183040d3 to nil")
tl_channel_admin_log_event_action_gen.go#L1457: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoin#183040d3: %w", err)
tl_channel_admin_log_event_action_gen.go#L1465: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoin#183040d3 to nil")
tl_channel_admin_log_event_action_gen.go#L1542: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantLeave#f89777f2 as nil")
tl_channel_admin_log_event_action_gen.go#L1551: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantLeave#f89777f2 as nil")
tl_channel_admin_log_event_action_gen.go#L1559: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantLeave#f89777f2 to nil")
tl_channel_admin_log_event_action_gen.go#L1562: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantLeave#f89777f2: %w", err)
tl_channel_admin_log_event_action_gen.go#L1570: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantLeave#f89777f2 to nil")
tl_channel_admin_log_event_action_gen.go#L1663: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantInvite#e31c34d8 as nil")
tl_channel_admin_log_event_action_gen.go#L1672: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantInvite#e31c34d8 as nil")
tl_channel_admin_log_event_action_gen.go#L1675: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantInvite#e31c34d8: field participant is nil")
tl_channel_admin_log_event_action_gen.go#L1678: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantInvite#e31c34d8: field participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L1691: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantInvite#e31c34d8 to nil")
tl_channel_admin_log_event_action_gen.go#L1694: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantInvite#e31c34d8: %w", err)
tl_channel_admin_log_event_action_gen.go#L1702: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantInvite#e31c34d8 to nil")
tl_channel_admin_log_event_action_gen.go#L1707: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantInvite#e31c34d8: field participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L1816: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e as nil")
tl_channel_admin_log_event_action_gen.go#L1825: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e as nil")
tl_channel_admin_log_event_action_gen.go#L1828: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field prev_participant is nil")
tl_channel_admin_log_event_action_gen.go#L1831: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field prev_participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L1834: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field new_participant is nil")
tl_channel_admin_log_event_action_gen.go#L1837: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field new_participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L1855: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e to nil")
tl_channel_admin_log_event_action_gen.go#L1858: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: %w", err)
tl_channel_admin_log_event_action_gen.go#L1866: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e to nil")
tl_channel_admin_log_event_action_gen.go#L1871: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field prev_participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L1878: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field new_participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L1987: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantToggleAdmin#d5676710 as nil")
tl_channel_admin_log_event_action_gen.go#L1996: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantToggleAdmin#d5676710 as nil")
tl_channel_admin_log_event_action_gen.go#L1999: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field prev_participant is nil")
tl_channel_admin_log_event_action_gen.go#L2002: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field prev_participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L2005: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field new_participant is nil")
tl_channel_admin_log_event_action_gen.go#L2008: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field new_participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L2026: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantToggleAdmin#d5676710 to nil")
tl_channel_admin_log_event_action_gen.go#L2029: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleAdmin#d5676710: %w", err)
tl_channel_admin_log_event_action_gen.go#L2037: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantToggleAdmin#d5676710 to nil")
tl_channel_admin_log_event_action_gen.go#L2042: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field prev_participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L2049: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field new_participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L2155: return fmt.Errorf("can't encode channelAdminLogEventActionChangeStickerSet#b1c3caa7 as nil")
tl_channel_admin_log_event_action_gen.go#L2164: return fmt.Errorf("can't encode channelAdminLogEventActionChangeStickerSet#b1c3caa7 as nil")
tl_channel_admin_log_event_action_gen.go#L2167: return fmt.Errorf("unable to encode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field prev_stickerset is nil")
tl_channel_admin_log_event_action_gen.go#L2170: return fmt.Errorf("unable to encode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field prev_stickerset: %w", err)
tl_channel_admin_log_event_action_gen.go#L2173: return fmt.Errorf("unable to encode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field new_stickerset is nil")
tl_channel_admin_log_event_action_gen.go#L2176: return fmt.Errorf("unable to encode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field new_stickerset: %w", err)
tl_channel_admin_log_event_action_gen.go#L2194: return fmt.Errorf("can't decode channelAdminLogEventActionChangeStickerSet#b1c3caa7 to nil")
tl_channel_admin_log_event_action_gen.go#L2197: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeStickerSet#b1c3caa7: %w", err)
tl_channel_admin_log_event_action_gen.go#L2205: return fmt.Errorf("can't decode channelAdminLogEventActionChangeStickerSet#b1c3caa7 to nil")
tl_channel_admin_log_event_action_gen.go#L2210: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field prev_stickerset: %w", err)
tl_channel_admin_log_event_action_gen.go#L2217: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field new_stickerset: %w", err)
tl_channel_admin_log_event_action_gen.go#L2315: return fmt.Errorf("can't encode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 as nil")
tl_channel_admin_log_event_action_gen.go#L2324: return fmt.Errorf("can't encode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 as nil")
tl_channel_admin_log_event_action_gen.go#L2338: return fmt.Errorf("can't decode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 to nil")
tl_channel_admin_log_event_action_gen.go#L2341: return fmt.Errorf("unable to decode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1: %w", err)
tl_channel_admin_log_event_action_gen.go#L2349: return fmt.Errorf("can't decode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 to nil")
tl_channel_admin_log_event_action_gen.go#L2354: return fmt.Errorf("unable to decode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L2466: return fmt.Errorf("can't encode channelAdminLogEventActionDefaultBannedRights#2df5fc0a as nil")
tl_channel_admin_log_event_action_gen.go#L2475: return fmt.Errorf("can't encode channelAdminLogEventActionDefaultBannedRights#2df5fc0a as nil")
tl_channel_admin_log_event_action_gen.go#L2478: return fmt.Errorf("unable to encode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: field prev_banned_rights: %w", err)
tl_channel_admin_log_event_action_gen.go#L2481: return fmt.Errorf("unable to encode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: field new_banned_rights: %w", err)
tl_channel_admin_log_event_action_gen.go#L2499: return fmt.Errorf("can't decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a to nil")
tl_channel_admin_log_event_action_gen.go#L2502: return fmt.Errorf("unable to decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: %w", err)
tl_channel_admin_log_event_action_gen.go#L2510: return fmt.Errorf("can't decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a to nil")
tl_channel_admin_log_event_action_gen.go#L2514: return fmt.Errorf("unable to decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: field prev_banned_rights: %w", err)
tl_channel_admin_log_event_action_gen.go#L2519: return fmt.Errorf("unable to decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: field new_banned_rights: %w", err)
tl_channel_admin_log_event_action_gen.go#L2613: return fmt.Errorf("can't encode channelAdminLogEventActionStopPoll#8f079643 as nil")
tl_channel_admin_log_event_action_gen.go#L2622: return fmt.Errorf("can't encode channelAdminLogEventActionStopPoll#8f079643 as nil")
tl_channel_admin_log_event_action_gen.go#L2625: return fmt.Errorf("unable to encode channelAdminLogEventActionStopPoll#8f079643: field message is nil")
tl_channel_admin_log_event_action_gen.go#L2628: return fmt.Errorf("unable to encode channelAdminLogEventActionStopPoll#8f079643: field message: %w", err)
tl_channel_admin_log_event_action_gen.go#L2641: return fmt.Errorf("can't decode channelAdminLogEventActionStopPoll#8f079643 to nil")
tl_channel_admin_log_event_action_gen.go#L2644: return fmt.Errorf("unable to decode channelAdminLogEventActionStopPoll#8f079643: %w", err)
tl_channel_admin_log_event_action_gen.go#L2652: return fmt.Errorf("can't decode channelAdminLogEventActionStopPoll#8f079643 to nil")
tl_channel_admin_log_event_action_gen.go#L2657: return fmt.Errorf("unable to decode channelAdminLogEventActionStopPoll#8f079643: field message: %w", err)
tl_channel_admin_log_event_action_gen.go#L2761: return fmt.Errorf("can't encode channelAdminLogEventActionChangeLinkedChat#a26f881b as nil")
tl_channel_admin_log_event_action_gen.go#L2770: return fmt.Errorf("can't encode channelAdminLogEventActionChangeLinkedChat#a26f881b as nil")
tl_channel_admin_log_event_action_gen.go#L2790: return fmt.Errorf("can't decode channelAdminLogEventActionChangeLinkedChat#a26f881b to nil")
tl_channel_admin_log_event_action_gen.go#L2793: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLinkedChat#a26f881b: %w", err)
tl_channel_admin_log_event_action_gen.go#L2801: return fmt.Errorf("can't decode channelAdminLogEventActionChangeLinkedChat#a26f881b to nil")
tl_channel_admin_log_event_action_gen.go#L2806: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLinkedChat#a26f881b: field prev_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L2813: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLinkedChat#a26f881b: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L2919: return fmt.Errorf("can't encode channelAdminLogEventActionChangeLocation#e6b76ae as nil")
tl_channel_admin_log_event_action_gen.go#L2928: return fmt.Errorf("can't encode channelAdminLogEventActionChangeLocation#e6b76ae as nil")
tl_channel_admin_log_event_action_gen.go#L2931: return fmt.Errorf("unable to encode channelAdminLogEventActionChangeLocation#e6b76ae: field prev_value is nil")
tl_channel_admin_log_event_action_gen.go#L2934: return fmt.Errorf("unable to encode channelAdminLogEventActionChangeLocation#e6b76ae: field prev_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L2937: return fmt.Errorf("unable to encode channelAdminLogEventActionChangeLocation#e6b76ae: field new_value is nil")
tl_channel_admin_log_event_action_gen.go#L2940: return fmt.Errorf("unable to encode channelAdminLogEventActionChangeLocation#e6b76ae: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L2958: return fmt.Errorf("can't decode channelAdminLogEventActionChangeLocation#e6b76ae to nil")
tl_channel_admin_log_event_action_gen.go#L2961: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLocation#e6b76ae: %w", err)
tl_channel_admin_log_event_action_gen.go#L2969: return fmt.Errorf("can't decode channelAdminLogEventActionChangeLocation#e6b76ae to nil")
tl_channel_admin_log_event_action_gen.go#L2974: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLocation#e6b76ae: field prev_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L2981: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLocation#e6b76ae: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L3090: return fmt.Errorf("can't encode channelAdminLogEventActionToggleSlowMode#53909779 as nil")
tl_channel_admin_log_event_action_gen.go#L3099: return fmt.Errorf("can't encode channelAdminLogEventActionToggleSlowMode#53909779 as nil")
tl_channel_admin_log_event_action_gen.go#L3119: return fmt.Errorf("can't decode channelAdminLogEventActionToggleSlowMode#53909779 to nil")
tl_channel_admin_log_event_action_gen.go#L3122: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSlowMode#53909779: %w", err)
tl_channel_admin_log_event_action_gen.go#L3130: return fmt.Errorf("can't decode channelAdminLogEventActionToggleSlowMode#53909779 to nil")
tl_channel_admin_log_event_action_gen.go#L3135: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSlowMode#53909779: field prev_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L3142: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSlowMode#53909779: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L3236: return fmt.Errorf("can't encode channelAdminLogEventActionStartGroupCall#23209745 as nil")
tl_channel_admin_log_event_action_gen.go#L3245: return fmt.Errorf("can't encode channelAdminLogEventActionStartGroupCall#23209745 as nil")
tl_channel_admin_log_event_action_gen.go#L3248: return fmt.Errorf("unable to encode channelAdminLogEventActionStartGroupCall#23209745: field call: %w", err)
tl_channel_admin_log_event_action_gen.go#L3261: return fmt.Errorf("can't decode channelAdminLogEventActionStartGroupCall#23209745 to nil")
tl_channel_admin_log_event_action_gen.go#L3264: return fmt.Errorf("unable to decode channelAdminLogEventActionStartGroupCall#23209745: %w", err)
tl_channel_admin_log_event_action_gen.go#L3272: return fmt.Errorf("can't decode channelAdminLogEventActionStartGroupCall#23209745 to nil")
tl_channel_admin_log_event_action_gen.go#L3276: return fmt.Errorf("unable to decode channelAdminLogEventActionStartGroupCall#23209745: field call: %w", err)
tl_channel_admin_log_event_action_gen.go#L3369: return fmt.Errorf("can't encode channelAdminLogEventActionDiscardGroupCall#db9f9140 as nil")
tl_channel_admin_log_event_action_gen.go#L3378: return fmt.Errorf("can't encode channelAdminLogEventActionDiscardGroupCall#db9f9140 as nil")
tl_channel_admin_log_event_action_gen.go#L3381: return fmt.Errorf("unable to encode channelAdminLogEventActionDiscardGroupCall#db9f9140: field call: %w", err)
tl_channel_admin_log_event_action_gen.go#L3394: return fmt.Errorf("can't decode channelAdminLogEventActionDiscardGroupCall#db9f9140 to nil")
tl_channel_admin_log_event_action_gen.go#L3397: return fmt.Errorf("unable to decode channelAdminLogEventActionDiscardGroupCall#db9f9140: %w", err)
tl_channel_admin_log_event_action_gen.go#L3405: return fmt.Errorf("can't decode channelAdminLogEventActionDiscardGroupCall#db9f9140 to nil")
tl_channel_admin_log_event_action_gen.go#L3409: return fmt.Errorf("unable to decode channelAdminLogEventActionDiscardGroupCall#db9f9140: field call: %w", err)
tl_channel_admin_log_event_action_gen.go#L3502: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantMute#f92424d2 as nil")
tl_channel_admin_log_event_action_gen.go#L3511: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantMute#f92424d2 as nil")
tl_channel_admin_log_event_action_gen.go#L3514: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantMute#f92424d2: field participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L3527: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantMute#f92424d2 to nil")
tl_channel_admin_log_event_action_gen.go#L3530: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantMute#f92424d2: %w", err)
tl_channel_admin_log_event_action_gen.go#L3538: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantMute#f92424d2 to nil")
tl_channel_admin_log_event_action_gen.go#L3542: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantMute#f92424d2: field participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L3635: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantUnmute#e64429c0 as nil")
tl_channel_admin_log_event_action_gen.go#L3644: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantUnmute#e64429c0 as nil")
tl_channel_admin_log_event_action_gen.go#L3647: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantUnmute#e64429c0: field participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L3660: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantUnmute#e64429c0 to nil")
tl_channel_admin_log_event_action_gen.go#L3663: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantUnmute#e64429c0: %w", err)
tl_channel_admin_log_event_action_gen.go#L3671: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantUnmute#e64429c0 to nil")
tl_channel_admin_log_event_action_gen.go#L3675: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantUnmute#e64429c0: field participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L3768: return fmt.Errorf("can't encode channelAdminLogEventActionToggleGroupCallSetting#56d6a247 as nil")
tl_channel_admin_log_event_action_gen.go#L3777: return fmt.Errorf("can't encode channelAdminLogEventActionToggleGroupCallSetting#56d6a247 as nil")
tl_channel_admin_log_event_action_gen.go#L3791: return fmt.Errorf("can't decode channelAdminLogEventActionToggleGroupCallSetting#56d6a247 to nil")
tl_channel_admin_log_event_action_gen.go#L3794: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleGroupCallSetting#56d6a247: %w", err)
tl_channel_admin_log_event_action_gen.go#L3802: return fmt.Errorf("can't decode channelAdminLogEventActionToggleGroupCallSetting#56d6a247 to nil")
tl_channel_admin_log_event_action_gen.go#L3807: return fmt.Errorf("unable to decode channelAdminLogEventActionToggleGroupCallSetting#56d6a247: field join_muted: %w", err)
tl_channel_admin_log_event_action_gen.go#L3901: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoinByInvite#5cdada77 as nil")
tl_channel_admin_log_event_action_gen.go#L3910: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoinByInvite#5cdada77 as nil")
tl_channel_admin_log_event_action_gen.go#L3913: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantJoinByInvite#5cdada77: field invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L3926: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoinByInvite#5cdada77 to nil")
tl_channel_admin_log_event_action_gen.go#L3929: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoinByInvite#5cdada77: %w", err)
tl_channel_admin_log_event_action_gen.go#L3937: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoinByInvite#5cdada77 to nil")
tl_channel_admin_log_event_action_gen.go#L3941: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoinByInvite#5cdada77: field invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4034: return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteDelete#5a50fca4 as nil")
tl_channel_admin_log_event_action_gen.go#L4043: return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteDelete#5a50fca4 as nil")
tl_channel_admin_log_event_action_gen.go#L4046: return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteDelete#5a50fca4: field invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4059: return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteDelete#5a50fca4 to nil")
tl_channel_admin_log_event_action_gen.go#L4062: return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteDelete#5a50fca4: %w", err)
tl_channel_admin_log_event_action_gen.go#L4070: return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteDelete#5a50fca4 to nil")
tl_channel_admin_log_event_action_gen.go#L4074: return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteDelete#5a50fca4: field invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4167: return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteRevoke#410a134e as nil")
tl_channel_admin_log_event_action_gen.go#L4176: return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteRevoke#410a134e as nil")
tl_channel_admin_log_event_action_gen.go#L4179: return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteRevoke#410a134e: field invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4192: return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteRevoke#410a134e to nil")
tl_channel_admin_log_event_action_gen.go#L4195: return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteRevoke#410a134e: %w", err)
tl_channel_admin_log_event_action_gen.go#L4203: return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteRevoke#410a134e to nil")
tl_channel_admin_log_event_action_gen.go#L4207: return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteRevoke#410a134e: field invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4311: return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteEdit#e90ebb59 as nil")
tl_channel_admin_log_event_action_gen.go#L4320: return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteEdit#e90ebb59 as nil")
tl_channel_admin_log_event_action_gen.go#L4323: return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field prev_invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4326: return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field new_invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4344: return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteEdit#e90ebb59 to nil")
tl_channel_admin_log_event_action_gen.go#L4347: return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteEdit#e90ebb59: %w", err)
tl_channel_admin_log_event_action_gen.go#L4355: return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteEdit#e90ebb59 to nil")
tl_channel_admin_log_event_action_gen.go#L4359: return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field prev_invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4364: return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field new_invite: %w", err)
tl_channel_admin_log_event_action_gen.go#L4457: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantVolume#3e7f6847 as nil")
tl_channel_admin_log_event_action_gen.go#L4466: return fmt.Errorf("can't encode channelAdminLogEventActionParticipantVolume#3e7f6847 as nil")
tl_channel_admin_log_event_action_gen.go#L4469: return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantVolume#3e7f6847: field participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L4482: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantVolume#3e7f6847 to nil")
tl_channel_admin_log_event_action_gen.go#L4485: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantVolume#3e7f6847: %w", err)
tl_channel_admin_log_event_action_gen.go#L4493: return fmt.Errorf("can't decode channelAdminLogEventActionParticipantVolume#3e7f6847 to nil")
tl_channel_admin_log_event_action_gen.go#L4497: return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantVolume#3e7f6847: field participant: %w", err)
tl_channel_admin_log_event_action_gen.go#L4601: return fmt.Errorf("can't encode channelAdminLogEventActionChangeHistoryTTL#6e941a38 as nil")
tl_channel_admin_log_event_action_gen.go#L4610: return fmt.Errorf("can't encode channelAdminLogEventActionChangeHistoryTTL#6e941a38 as nil")
tl_channel_admin_log_event_action_gen.go#L4630: return fmt.Errorf("can't decode channelAdminLogEventActionChangeHistoryTTL#6e941a38 to nil")
tl_channel_admin_log_event_action_gen.go#L4633: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeHistoryTTL#6e941a38: %w", err)
tl_channel_admin_log_event_action_gen.go#L4641: return fmt.Errorf("can't decode channelAdminLogEventActionChangeHistoryTTL#6e941a38 to nil")
tl_channel_admin_log_event_action_gen.go#L4646: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeHistoryTTL#6e941a38: field prev_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L4653: return fmt.Errorf("unable to decode channelAdminLogEventActionChangeHistoryTTL#6e941a38: field new_value: %w", err)
tl_channel_admin_log_event_action_gen.go#L4749: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4756: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4763: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4770: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4777: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4784: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4791: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4798: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4805: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4812: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4819: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4826: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4833: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4840: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4847: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4854: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4861: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4868: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4875: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4882: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4889: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4896: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4903: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4910: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4917: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4924: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4931: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4938: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4945: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4952: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4959: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4966: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
tl_channel_admin_log_event_action_gen.go#L4970: return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", bin.NewUnexpectedID(id))
tl_channel_admin_log_event_action_gen.go#L4982: return fmt.Errorf("unable to decode ChannelAdminLogEventActionBox to nil")
tl_channel_admin_log_event_action_gen.go#L4986: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_channel_admin_log_event_action_gen.go#L4995: return fmt.Errorf("unable to encode ChannelAdminLogEventActionClass as nil")
tl_channel_admin_log_event_gen.go#L138: return fmt.Errorf("can't encode channelAdminLogEvent#3b5a3e40 as nil")
tl_channel_admin_log_event_gen.go#L147: return fmt.Errorf("can't encode channelAdminLogEvent#3b5a3e40 as nil")
tl_channel_admin_log_event_gen.go#L153: return fmt.Errorf("unable to encode channelAdminLogEvent#3b5a3e40: field action is nil")
tl_channel_admin_log_event_gen.go#L156: return fmt.Errorf("unable to encode channelAdminLogEvent#3b5a3e40: field action: %w", err)
tl_channel_admin_log_event_gen.go#L184: return fmt.Errorf("can't decode channelAdminLogEvent#3b5a3e40 to nil")
tl_channel_admin_log_event_gen.go#L187: return fmt.Errorf("unable to decode channelAdminLogEvent#3b5a3e40: %w", err)
tl_channel_admin_log_event_gen.go#L195: return fmt.Errorf("can't decode channelAdminLogEvent#3b5a3e40 to nil")
tl_channel_admin_log_event_gen.go#L200: return fmt.Errorf("unable to decode channelAdminLogEvent#3b5a3e40: field id: %w", err)
tl_channel_admin_log_event_gen.go#L207: return fmt.Errorf("unable to decode channelAdminLogEvent#3b5a3e40: field date: %w", err)
tl_channel_admin_log_event_gen.go#L214: return fmt.Errorf("unable to decode channelAdminLogEvent#3b5a3e40: field user_id: %w", err)
tl_channel_admin_log_event_gen.go#L221: return fmt.Errorf("unable to decode channelAdminLogEvent#3b5a3e40: field action: %w", err)
tl_channel_admin_log_events_filter_gen.go#L347: return fmt.Errorf("can't encode channelAdminLogEventsFilter#ea107ae4 as nil")
tl_channel_admin_log_events_filter_gen.go#L356: return fmt.Errorf("can't encode channelAdminLogEventsFilter#ea107ae4 as nil")
tl_channel_admin_log_events_filter_gen.go#L407: return fmt.Errorf("unable to encode channelAdminLogEventsFilter#ea107ae4: field flags: %w", err)
tl_channel_admin_log_events_filter_gen.go#L671: return fmt.Errorf("can't decode channelAdminLogEventsFilter#ea107ae4 to nil")
tl_channel_admin_log_events_filter_gen.go#L674: return fmt.Errorf("unable to decode channelAdminLogEventsFilter#ea107ae4: %w", err)
tl_channel_admin_log_events_filter_gen.go#L682: return fmt.Errorf("can't decode channelAdminLogEventsFilter#ea107ae4 to nil")
tl_channel_admin_log_events_filter_gen.go#L686: return fmt.Errorf("unable to decode channelAdminLogEventsFilter#ea107ae4: field flags: %w", err)
tl_channel_location_gen.go#L88: return fmt.Errorf("can't encode channelLocationEmpty#bfb5ad8b as nil")
tl_channel_location_gen.go#L97: return fmt.Errorf("can't encode channelLocationEmpty#bfb5ad8b as nil")
tl_channel_location_gen.go#L105: return fmt.Errorf("can't decode channelLocationEmpty#bfb5ad8b to nil")
tl_channel_location_gen.go#L108: return fmt.Errorf("unable to decode channelLocationEmpty#bfb5ad8b: %w", err)
tl_channel_location_gen.go#L116: return fmt.Errorf("can't decode channelLocationEmpty#bfb5ad8b to nil")
tl_channel_location_gen.go#L218: return fmt.Errorf("can't encode channelLocation#209b82db as nil")
tl_channel_location_gen.go#L227: return fmt.Errorf("can't encode channelLocation#209b82db as nil")
tl_channel_location_gen.go#L230: return fmt.Errorf("unable to encode channelLocation#209b82db: field geo_point is nil")
tl_channel_location_gen.go#L233: return fmt.Errorf("unable to encode channelLocation#209b82db: field geo_point: %w", err)
tl_channel_location_gen.go#L252: return fmt.Errorf("can't decode channelLocation#209b82db to nil")
tl_channel_location_gen.go#L255: return fmt.Errorf("unable to decode channelLocation#209b82db: %w", err)
tl_channel_location_gen.go#L263: return fmt.Errorf("can't decode channelLocation#209b82db to nil")
tl_channel_location_gen.go#L268: return fmt.Errorf("unable to decode channelLocation#209b82db: field geo_point: %w", err)
tl_channel_location_gen.go#L275: return fmt.Errorf("unable to decode channelLocation#209b82db: field address: %w", err)
tl_channel_location_gen.go#L352: return nil, fmt.Errorf("unable to decode ChannelLocationClass: %w", err)
tl_channel_location_gen.go#L359: return nil, fmt.Errorf("unable to decode ChannelLocationClass: %w", err)
tl_channel_location_gen.go#L363: return nil, fmt.Errorf("unable to decode ChannelLocationClass: %w", bin.NewUnexpectedID(id))
tl_channel_location_gen.go#L375: return fmt.Errorf("unable to decode ChannelLocationBox to nil")
tl_channel_location_gen.go#L379: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_channel_location_gen.go#L388: return fmt.Errorf("unable to encode ChannelLocationClass as nil")
tl_channel_messages_filter_gen.go#L88: return fmt.Errorf("can't encode channelMessagesFilterEmpty#94d42ee7 as nil")
tl_channel_messages_filter_gen.go#L97: return fmt.Errorf("can't encode channelMessagesFilterEmpty#94d42ee7 as nil")
tl_channel_messages_filter_gen.go#L105: return fmt.Errorf("can't decode channelMessagesFilterEmpty#94d42ee7 to nil")
tl_channel_messages_filter_gen.go#L108: return fmt.Errorf("unable to decode channelMessagesFilterEmpty#94d42ee7: %w", err)
tl_channel_messages_filter_gen.go#L116: return fmt.Errorf("can't decode channelMessagesFilterEmpty#94d42ee7 to nil")
tl_channel_messages_filter_gen.go#L227: return fmt.Errorf("can't encode channelMessagesFilter#cd77d957 as nil")
tl_channel_messages_filter_gen.go#L236: return fmt.Errorf("can't encode channelMessagesFilter#cd77d957 as nil")
tl_channel_messages_filter_gen.go#L242: return fmt.Errorf("unable to encode channelMessagesFilter#cd77d957: field flags: %w", err)
tl_channel_messages_filter_gen.go#L247: return fmt.Errorf("unable to encode channelMessagesFilter#cd77d957: field ranges element with index %d: %w", idx, err)
tl_channel_messages_filter_gen.go#L277: return fmt.Errorf("can't decode channelMessagesFilter#cd77d957 to nil")
tl_channel_messages_filter_gen.go#L280: return fmt.Errorf("unable to decode channelMessagesFilter#cd77d957: %w", err)
tl_channel_messages_filter_gen.go#L288: return fmt.Errorf("can't decode channelMessagesFilter#cd77d957 to nil")
tl_channel_messages_filter_gen.go#L292: return fmt.Errorf("unable to decode channelMessagesFilter#cd77d957: field flags: %w", err)
tl_channel_messages_filter_gen.go#L299: return fmt.Errorf("unable to decode channelMessagesFilter#cd77d957: field ranges: %w", err)
tl_channel_messages_filter_gen.go#L304: return fmt.Errorf("unable to decode channelMessagesFilter#cd77d957: field ranges: %w", err)
tl_channel_messages_filter_gen.go#L382: return nil, fmt.Errorf("unable to decode ChannelMessagesFilterClass: %w", err)
tl_channel_messages_filter_gen.go#L389: return nil, fmt.Errorf("unable to decode ChannelMessagesFilterClass: %w", err)
tl_channel_messages_filter_gen.go#L393: return nil, fmt.Errorf("unable to decode ChannelMessagesFilterClass: %w", bin.NewUnexpectedID(id))
tl_channel_messages_filter_gen.go#L405: return fmt.Errorf("unable to decode ChannelMessagesFilterBox to nil")
tl_channel_messages_filter_gen.go#L409: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_channel_messages_filter_gen.go#L418: return fmt.Errorf("unable to encode ChannelMessagesFilterClass as nil")
tl_channel_participant_gen.go#L116: return fmt.Errorf("can't encode channelParticipant#15ebac1d as nil")
tl_channel_participant_gen.go#L125: return fmt.Errorf("can't encode channelParticipant#15ebac1d as nil")
tl_channel_participant_gen.go#L145: return fmt.Errorf("can't decode channelParticipant#15ebac1d to nil")
tl_channel_participant_gen.go#L148: return fmt.Errorf("unable to decode channelParticipant#15ebac1d: %w", err)
tl_channel_participant_gen.go#L156: return fmt.Errorf("can't decode channelParticipant#15ebac1d to nil")
tl_channel_participant_gen.go#L161: return fmt.Errorf("unable to decode channelParticipant#15ebac1d: field user_id: %w", err)
tl_channel_participant_gen.go#L168: return fmt.Errorf("unable to decode channelParticipant#15ebac1d: field date: %w", err)
tl_channel_participant_gen.go#L283: return fmt.Errorf("can't encode channelParticipantSelf#a3289a6d as nil")
tl_channel_participant_gen.go#L292: return fmt.Errorf("can't encode channelParticipantSelf#a3289a6d as nil")
tl_channel_participant_gen.go#L318: return fmt.Errorf("can't decode channelParticipantSelf#a3289a6d to nil")
tl_channel_participant_gen.go#L321: return fmt.Errorf("unable to decode channelParticipantSelf#a3289a6d: %w", err)
tl_channel_participant_gen.go#L329: return fmt.Errorf("can't decode channelParticipantSelf#a3289a6d to nil")
tl_channel_participant_gen.go#L334: return fmt.Errorf("unable to decode channelParticipantSelf#a3289a6d: field user_id: %w", err)
tl_channel_participant_gen.go#L341: return fmt.Errorf("unable to decode channelParticipantSelf#a3289a6d: field inviter_id: %w", err)
tl_channel_participant_gen.go#L348: return fmt.Errorf("unable to decode channelParticipantSelf#a3289a6d: field date: %w", err)
tl_channel_participant_gen.go#L478: return fmt.Errorf("can't encode channelParticipantCreator#447dca4b as nil")
tl_channel_participant_gen.go#L487: return fmt.Errorf("can't encode channelParticipantCreator#447dca4b as nil")
tl_channel_participant_gen.go#L493: return fmt.Errorf("unable to encode channelParticipantCreator#447dca4b: field flags: %w", err)
tl_channel_participant_gen.go#L497: return fmt.Errorf("unable to encode channelParticipantCreator#447dca4b: field admin_rights: %w", err)
tl_channel_participant_gen.go#L533: return fmt.Errorf("can't decode channelParticipantCreator#447dca4b to nil")
tl_channel_participant_gen.go#L536: return fmt.Errorf("unable to decode channelParticipantCreator#447dca4b: %w", err)
tl_channel_participant_gen.go#L544: return fmt.Errorf("can't decode channelParticipantCreator#447dca4b to nil")
tl_channel_participant_gen.go#L548: return fmt.Errorf("unable to decode channelParticipantCreator#447dca4b: field flags: %w", err)
tl_channel_participant_gen.go#L554: return fmt.Errorf("unable to decode channelParticipantCreator#447dca4b: field user_id: %w", err)
tl_channel_participant_gen.go#L560: return fmt.Errorf("unable to decode channelParticipantCreator#447dca4b: field admin_rights: %w", err)
tl_channel_participant_gen.go#L566: return fmt.Errorf("unable to decode channelParticipantCreator#447dca4b: field rank: %w", err)
tl_channel_participant_gen.go#L761: return fmt.Errorf("can't encode channelParticipantAdmin#ccbebbaf as nil")
tl_channel_participant_gen.go#L770: return fmt.Errorf("can't encode channelParticipantAdmin#ccbebbaf as nil")
tl_channel_participant_gen.go#L785: return fmt.Errorf("unable to encode channelParticipantAdmin#ccbebbaf: field flags: %w", err)
tl_channel_participant_gen.go#L794: return fmt.Errorf("unable to encode channelParticipantAdmin#ccbebbaf: field admin_rights: %w", err)
tl_channel_participant_gen.go#L887: return fmt.Errorf("can't decode channelParticipantAdmin#ccbebbaf to nil")
tl_channel_participant_gen.go#L890: return fmt.Errorf("unable to decode channelParticipantAdmin#ccbebbaf: %w", err)
tl_channel_participant_gen.go#L898: return fmt.Errorf("can't decode channelParticipantAdmin#ccbebbaf to nil")
tl_channel_participant_gen.go#L902: return fmt.Errorf("unable to decode channelParticipantAdmin#ccbebbaf: field flags: %w", err)
tl_channel_participant_gen.go#L910: return fmt.Errorf("unable to decode channelParticipantAdmin#ccbebbaf: field user_id: %w", err)
tl_channel_participant_gen.go#L917: return fmt.Errorf("unable to decode channelParticipantAdmin#ccbebbaf: field inviter_id: %w", err)
tl_channel_participant_gen.go#L924: return fmt.Errorf("unable to decode channelParticipantAdmin#ccbebbaf: field promoted_by: %w", err)
tl_channel_participant_gen.go#L931: return fmt.Errorf("unable to decode channelParticipantAdmin#ccbebbaf: field date: %w", err)
tl_channel_participant_gen.go#L937: return fmt.Errorf("unable to decode channelParticipantAdmin#ccbebbaf: field admin_rights: %w", err)
tl_channel_participant_gen.go#L943: return fmt.Errorf("unable to decode channelParticipantAdmin#ccbebbaf: field rank: %w", err)
tl_channel_participant_gen.go#L1092: return fmt.Errorf("can't encode channelParticipantBanned#50a1dfd6 as nil")
tl_channel_participant_gen.go#L1101: return fmt.Errorf("can't encode channelParticipantBanned#50a1dfd6 as nil")
tl_channel_participant_gen.go#L1107: return fmt.Errorf("unable to encode channelParticipantBanned#50a1dfd6: field flags: %w", err)
tl_channel_participant_gen.go#L1110: return fmt.Errorf("unable to encode channelParticipantBanned#50a1dfd6: field peer is nil")
tl_channel_participant_gen.go#L1113: return fmt.Errorf("unable to encode channelParticipantBanned#50a1dfd6: field peer: %w", err)
tl_channel_participant_gen.go#L1118: return fmt.Errorf("unable to encode channelParticipantBanned#50a1dfd6: field banned_rights: %w", err)
tl_channel_participant_gen.go#L1162: return fmt.Errorf("can't decode channelParticipantBanned#50a1dfd6 to nil")
tl_channel_participant_gen.go#L1165: return fmt.Errorf("unable to decode channelParticipantBanned#50a1dfd6: %w", err)
tl_channel_participant_gen.go#L1173: return fmt.Errorf("can't decode channelParticipantBanned#50a1dfd6 to nil")
tl_channel_participant_gen.go#L1177: return fmt.Errorf("unable to decode channelParticipantBanned#50a1dfd6: field flags: %w", err)
tl_channel_participant_gen.go#L1184: return fmt.Errorf("unable to decode channelParticipantBanned#50a1dfd6: field peer: %w", err)
tl_channel_participant_gen.go#L1191: return fmt.Errorf("unable to decode channelParticipantBanned#50a1dfd6: field kicked_by: %w", err)
tl_channel_participant_gen.go#L1198: return fmt.Errorf("unable to decode channelParticipantBanned#50a1dfd6: field date: %w", err)
tl_channel_participant_gen.go#L1204: return fmt.Errorf("unable to decode channelParticipantBanned#50a1dfd6: field banned_rights: %w", err)
tl_channel_participant_gen.go#L1296: return fmt.Errorf("can't encode channelParticipantLeft#1b03f006 as nil")
tl_channel_participant_gen.go#L1305: return fmt.Errorf("can't encode channelParticipantLeft#1b03f006 as nil")
tl_channel_participant_gen.go#L1308: return fmt.Errorf("unable to encode channelParticipantLeft#1b03f006: field peer is nil")
tl_channel_participant_gen.go#L1311: return fmt.Errorf("unable to encode channelParticipantLeft#1b03f006: field peer: %w", err)
tl_channel_participant_gen.go#L1324: return fmt.Errorf("can't decode channelParticipantLeft#1b03f006 to nil")
tl_channel_participant_gen.go#L1327: return fmt.Errorf("unable to decode channelParticipantLeft#1b03f006: %w", err)
tl_channel_participant_gen.go#L1335: return fmt.Errorf("can't decode channelParticipantLeft#1b03f006 to nil")
tl_channel_participant_gen.go#L1340: return fmt.Errorf("unable to decode channelParticipantLeft#1b03f006: field peer: %w", err)
tl_channel_participant_gen.go#L1408: return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
tl_channel_participant_gen.go#L1415: return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
tl_channel_participant_gen.go#L1422: return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
tl_channel_participant_gen.go#L1429: return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
tl_channel_participant_gen.go#L1436: return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
tl_channel_participant_gen.go#L1443: return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
tl_channel_participant_gen.go#L1447: return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", bin.NewUnexpectedID(id))
tl_channel_participant_gen.go#L1459: return fmt.Errorf("unable to decode ChannelParticipantBox to nil")
tl_channel_participant_gen.go#L1463: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_channel_participant_gen.go#L1472: return fmt.Errorf("unable to encode ChannelParticipantClass as nil")
tl_channel_participants_filter_gen.go#L88: return fmt.Errorf("can't encode channelParticipantsRecent#de3f3c79 as nil")
tl_channel_participants_filter_gen.go#L97: return fmt.Errorf("can't encode channelParticipantsRecent#de3f3c79 as nil")
tl_channel_participants_filter_gen.go#L105: return fmt.Errorf("can't decode channelParticipantsRecent#de3f3c79 to nil")
tl_channel_participants_filter_gen.go#L108: return fmt.Errorf("unable to decode channelParticipantsRecent#de3f3c79: %w", err)
tl_channel_participants_filter_gen.go#L116: return fmt.Errorf("can't decode channelParticipantsRecent#de3f3c79 to nil")
tl_channel_participants_filter_gen.go#L190: return fmt.Errorf("can't encode channelParticipantsAdmins#b4608969 as nil")
tl_channel_participants_filter_gen.go#L199: return fmt.Errorf("can't encode channelParticipantsAdmins#b4608969 as nil")
tl_channel_participants_filter_gen.go#L207: return fmt.Errorf("can't decode channelParticipantsAdmins#b4608969 to nil")
tl_channel_participants_filter_gen.go#L210: return fmt.Errorf("unable to decode channelParticipantsAdmins#b4608969: %w", err)
tl_channel_participants_filter_gen.go#L218: return fmt.Errorf("can't decode channelParticipantsAdmins#b4608969 to nil")
tl_channel_participants_filter_gen.go#L309: return fmt.Errorf("can't encode channelParticipantsKicked#a3b54985 as nil")
tl_channel_participants_filter_gen.go#L318: return fmt.Errorf("can't encode channelParticipantsKicked#a3b54985 as nil")
tl_channel_participants_filter_gen.go#L332: return fmt.Errorf("can't decode channelParticipantsKicked#a3b54985 to nil")
tl_channel_participants_filter_gen.go#L335: return fmt.Errorf("unable to decode channelParticipantsKicked#a3b54985: %w", err)
tl_channel_participants_filter_gen.go#L343: return fmt.Errorf("can't decode channelParticipantsKicked#a3b54985 to nil")
tl_channel_participants_filter_gen.go#L348: return fmt.Errorf("unable to decode channelParticipantsKicked#a3b54985: field q: %w", err)
tl_channel_participants_filter_gen.go#L424: return fmt.Errorf("can't encode channelParticipantsBots#b0d1865b as nil")
tl_channel_participants_filter_gen.go#L433: return fmt.Errorf("can't encode channelParticipantsBots#b0d1865b as nil")
tl_channel_participants_filter_gen.go#L441: return fmt.Errorf("can't decode channelParticipantsBots#b0d1865b to nil")
tl_channel_participants_filter_gen.go#L444: return fmt.Errorf("unable to decode channelParticipantsBots#b0d1865b: %w", err)
tl_channel_participants_filter_gen.go#L452: return fmt.Errorf("can't decode channelParticipantsBots#b0d1865b to nil")
tl_channel_participants_filter_gen.go#L543: return fmt.Errorf("can't encode channelParticipantsBanned#1427a5e1 as nil")
tl_channel_participants_filter_gen.go#L552: return fmt.Errorf("can't encode channelParticipantsBanned#1427a5e1 as nil")
tl_channel_participants_filter_gen.go#L566: return fmt.Errorf("can't decode channelParticipantsBanned#1427a5e1 to nil")
tl_channel_participants_filter_gen.go#L569: return fmt.Errorf("unable to decode channelParticipantsBanned#1427a5e1: %w", err)
tl_channel_participants_filter_gen.go#L577: return fmt.Errorf("can't decode channelParticipantsBanned#1427a5e1 to nil")
tl_channel_participants_filter_gen.go#L582: return fmt.Errorf("unable to decode channelParticipantsBanned#1427a5e1: field q: %w", err)
tl_channel_participants_filter_gen.go#L675: return fmt.Errorf("can't encode channelParticipantsSearch#656ac4b as nil")
tl_channel_participants_filter_gen.go#L684: return fmt.Errorf("can't encode channelParticipantsSearch#656ac4b as nil")
tl_channel_participants_filter_gen.go#L698: return fmt.Errorf("can't decode channelParticipantsSearch#656ac4b to nil")
tl_channel_participants_filter_gen.go#L701: return fmt.Errorf("unable to decode channelParticipantsSearch#656ac4b: %w", err)
tl_channel_participants_filter_gen.go#L709: return fmt.Errorf("can't decode channelParticipantsSearch#656ac4b to nil")
tl_channel_participants_filter_gen.go#L714: return fmt.Errorf("unable to decode channelParticipantsSearch#656ac4b: field q: %w", err)
tl_channel_participants_filter_gen.go#L807: return fmt.Errorf("can't encode channelParticipantsContacts#bb6ae88d as nil")
tl_channel_participants_filter_gen.go#L816: return fmt.Errorf("can't encode channelParticipantsContacts#bb6ae88d as nil")
tl_channel_participants_filter_gen.go#L830: return fmt.Errorf("can't decode channelParticipantsContacts#bb6ae88d to nil")
tl_channel_participants_filter_gen.go#L833: return fmt.Errorf("unable to decode channelParticipantsContacts#bb6ae88d: %w", err)
tl_channel_participants_filter_gen.go#L841: return fmt.Errorf("can't decode channelParticipantsContacts#bb6ae88d to nil")
tl_channel_participants_filter_gen.go#L846: return fmt.Errorf("unable to decode channelParticipantsContacts#bb6ae88d: field q: %w", err)
tl_channel_participants_filter_gen.go#L980: return fmt.Errorf("can't encode channelParticipantsMentions#e04b5ceb as nil")
tl_channel_participants_filter_gen.go#L989: return fmt.Errorf("can't encode channelParticipantsMentions#e04b5ceb as nil")
tl_channel_participants_filter_gen.go#L998: return fmt.Errorf("unable to encode channelParticipantsMentions#e04b5ceb: field flags: %w", err)
tl_channel_participants_filter_gen.go#L1042: return fmt.Errorf("can't decode channelParticipantsMentions#e04b5ceb to nil")
tl_channel_participants_filter_gen.go#L1045: return fmt.Errorf("unable to decode channelParticipantsMentions#e04b5ceb: %w", err)
tl_channel_participants_filter_gen.go#L1053: return fmt.Errorf("can't decode channelParticipantsMentions#e04b5ceb to nil")
tl_channel_participants_filter_gen.go#L1057: return fmt.Errorf("unable to decode channelParticipantsMentions#e04b5ceb: field flags: %w", err)
tl_channel_participants_filter_gen.go#L1063: return fmt.Errorf("unable to decode channelParticipantsMentions#e04b5ceb: field q: %w", err)
tl_channel_participants_filter_gen.go#L1070: return fmt.Errorf("unable to decode channelParticipantsMentions#e04b5ceb: field top_msg_id: %w", err)
tl_channel_participants_filter_gen.go#L1140: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
tl_channel_participants_filter_gen.go#L1147: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
tl_channel_participants_filter_gen.go#L1154: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
tl_channel_participants_filter_gen.go#L1161: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
tl_channel_participants_filter_gen.go#L1168: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
tl_channel_participants_filter_gen.go#L1175: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
tl_channel_participants_filter_gen.go#L1182: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
tl_channel_participants_filter_gen.go#L1189: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
tl_channel_participants_filter_gen.go#L1193: return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", bin.NewUnexpectedID(id))
tl_channel_participants_filter_gen.go#L1205: return fmt.Errorf("unable to decode ChannelParticipantsFilterBox to nil")
tl_channel_participants_filter_gen.go#L1209: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_channel_participants_filter_gen.go#L1218: return fmt.Errorf("unable to encode ChannelParticipantsFilterClass as nil")
tl_channels_admin_log_results_gen.go#L127: return fmt.Errorf("can't encode channels.adminLogResults#ed8af74d as nil")
tl_channels_admin_log_results_gen.go#L136: return fmt.Errorf("can't encode channels.adminLogResults#ed8af74d as nil")
tl_channels_admin_log_results_gen.go#L141: return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field events element with index %d: %w", idx, err)
tl_channels_admin_log_results_gen.go#L147: return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field chats element with index %d is nil", idx)
tl_channels_admin_log_results_gen.go#L150: return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field chats element with index %d: %w", idx, err)
tl_channels_admin_log_results_gen.go#L156: return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field users element with index %d is nil", idx)
tl_channels_admin_log_results_gen.go#L159: return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field users element with index %d: %w", idx, err)
tl_channels_admin_log_results_gen.go#L193: return fmt.Errorf("can't decode channels.adminLogResults#ed8af74d to nil")
tl_channels_admin_log_results_gen.go#L196: return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: %w", err)
tl_channels_admin_log_results_gen.go#L204: return fmt.Errorf("can't decode channels.adminLogResults#ed8af74d to nil")
tl_channels_admin_log_results_gen.go#L209: return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field events: %w", err)
tl_channels_admin_log_results_gen.go#L214: return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field events: %w", err)
tl_channels_admin_log_results_gen.go#L222: return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field chats: %w", err)
tl_channels_admin_log_results_gen.go#L227: return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field chats: %w", err)
tl_channels_admin_log_results_gen.go#L235: return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field users: %w", err)
tl_channels_admin_log_results_gen.go#L240: return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field users: %w", err)
tl_channels_channel_participant_gen.go#L127: return fmt.Errorf("can't encode channels.channelParticipant#dfb80317 as nil")
tl_channels_channel_participant_gen.go#L136: return fmt.Errorf("can't encode channels.channelParticipant#dfb80317 as nil")
tl_channels_channel_participant_gen.go#L139: return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field participant is nil")
tl_channels_channel_participant_gen.go#L142: return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field participant: %w", err)
tl_channels_channel_participant_gen.go#L147: return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field chats element with index %d is nil", idx)
tl_channels_channel_participant_gen.go#L150: return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field chats element with index %d: %w", idx, err)
tl_channels_channel_participant_gen.go#L156: return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field users element with index %d is nil", idx)
tl_channels_channel_participant_gen.go#L159: return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field users element with index %d: %w", idx, err)
tl_channels_channel_participant_gen.go#L193: return fmt.Errorf("can't decode channels.channelParticipant#dfb80317 to nil")
tl_channels_channel_participant_gen.go#L196: return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: %w", err)
tl_channels_channel_participant_gen.go#L204: return fmt.Errorf("can't decode channels.channelParticipant#dfb80317 to nil")
tl_channels_channel_participant_gen.go#L209: return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field participant: %w", err)
tl_channels_channel_participant_gen.go#L216: return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field chats: %w", err)
tl_channels_channel_participant_gen.go#L221: return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field chats: %w", err)
tl_channels_channel_participant_gen.go#L229: return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field users: %w", err)
tl_channels_channel_participant_gen.go#L234: return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field users: %w", err)
tl_channels_channel_participants_gen.go#L138: return fmt.Errorf("can't encode channels.channelParticipants#9ab0feaf as nil")
tl_channels_channel_participants_gen.go#L147: return fmt.Errorf("can't encode channels.channelParticipants#9ab0feaf as nil")
tl_channels_channel_participants_gen.go#L153: return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field participants element with index %d is nil", idx)
tl_channels_channel_participants_gen.go#L156: return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field participants element with index %d: %w", idx, err)
tl_channels_channel_participants_gen.go#L162: return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field chats element with index %d is nil", idx)
tl_channels_channel_participants_gen.go#L165: return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field chats element with index %d: %w", idx, err)
tl_channels_channel_participants_gen.go#L171: return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field users element with index %d is nil", idx)
tl_channels_channel_participants_gen.go#L174: return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field users element with index %d: %w", idx, err)
tl_channels_channel_participants_gen.go#L218: return fmt.Errorf("can't decode channels.channelParticipants#9ab0feaf to nil")
tl_channels_channel_participants_gen.go#L221: return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: %w", err)
tl_channels_channel_participants_gen.go#L229: return fmt.Errorf("can't decode channels.channelParticipants#9ab0feaf to nil")
tl_channels_channel_participants_gen.go#L234: return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field count: %w", err)
tl_channels_channel_participants_gen.go#L241: return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field participants: %w", err)
tl_channels_channel_participants_gen.go#L246: return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field participants: %w", err)
tl_channels_channel_participants_gen.go#L254: return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field chats: %w", err)
tl_channels_channel_participants_gen.go#L259: return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field chats: %w", err)
tl_channels_channel_participants_gen.go#L267: return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field users: %w", err)
tl_channels_channel_participants_gen.go#L272: return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field users: %w", err)
tl_channels_channel_participants_gen.go#L349: return fmt.Errorf("can't encode channels.channelParticipantsNotModified#f0173fe9 as nil")
tl_channels_channel_participants_gen.go#L358: return fmt.Errorf("can't encode channels.channelParticipantsNotModified#f0173fe9 as nil")
tl_channels_channel_participants_gen.go#L366: return fmt.Errorf("can't decode channels.channelParticipantsNotModified#f0173fe9 to nil")
tl_channels_channel_participants_gen.go#L369: return fmt.Errorf("unable to decode channels.channelParticipantsNotModified#f0173fe9: %w", err)
tl_channels_channel_participants_gen.go#L377: return fmt.Errorf("can't decode channels.channelParticipantsNotModified#f0173fe9 to nil")
tl_channels_channel_participants_gen.go#L454: return nil, fmt.Errorf("unable to decode ChannelsChannelParticipantsClass: %w", err)
tl_channels_channel_participants_gen.go#L461: return nil, fmt.Errorf("unable to decode ChannelsChannelParticipantsClass: %w", err)
tl_channels_channel_participants_gen.go#L465: return nil, fmt.Errorf("unable to decode ChannelsChannelParticipantsClass: %w", bin.NewUnexpectedID(id))
tl_channels_channel_participants_gen.go#L477: return fmt.Errorf("unable to decode ChannelsChannelParticipantsBox to nil")
tl_channels_channel_participants_gen.go#L481: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_channels_channel_participants_gen.go#L490: return fmt.Errorf("unable to encode ChannelsChannelParticipantsClass as nil")
tl_channels_check_username_gen.go#L119: return fmt.Errorf("can't encode channels.checkUsername#10e6bd2c as nil")
tl_channels_check_username_gen.go#L128: return fmt.Errorf("can't encode channels.checkUsername#10e6bd2c as nil")
tl_channels_check_username_gen.go#L131: return fmt.Errorf("unable to encode channels.checkUsername#10e6bd2c: field channel is nil")
tl_channels_check_username_gen.go#L134: return fmt.Errorf("unable to encode channels.checkUsername#10e6bd2c: field channel: %w", err)
tl_channels_check_username_gen.go#L158: return fmt.Errorf("can't decode channels.checkUsername#10e6bd2c to nil")
tl_channels_check_username_gen.go#L161: return fmt.Errorf("unable to decode channels.checkUsername#10e6bd2c: %w", err)
tl_channels_check_username_gen.go#L169: return fmt.Errorf("can't decode channels.checkUsername#10e6bd2c to nil")
tl_channels_check_username_gen.go#L174: return fmt.Errorf("unable to decode channels.checkUsername#10e6bd2c: field channel: %w", err)
tl_channels_check_username_gen.go#L181: return fmt.Errorf("unable to decode channels.checkUsername#10e6bd2c: field username: %w", err)
tl_channels_convert_to_gigagroup_gen.go#L104: return fmt.Errorf("can't encode channels.convertToGigagroup#b290c69 as nil")
tl_channels_convert_to_gigagroup_gen.go#L113: return fmt.Errorf("can't encode channels.convertToGigagroup#b290c69 as nil")
tl_channels_convert_to_gigagroup_gen.go#L116: return fmt.Errorf("unable to encode channels.convertToGigagroup#b290c69: field channel is nil")
tl_channels_convert_to_gigagroup_gen.go#L119: return fmt.Errorf("unable to encode channels.convertToGigagroup#b290c69: field channel: %w", err)
tl_channels_convert_to_gigagroup_gen.go#L137: return fmt.Errorf("can't decode channels.convertToGigagroup#b290c69 to nil")
tl_channels_convert_to_gigagroup_gen.go#L140: return fmt.Errorf("unable to decode channels.convertToGigagroup#b290c69: %w", err)
tl_channels_convert_to_gigagroup_gen.go#L148: return fmt.Errorf("can't decode channels.convertToGigagroup#b290c69 to nil")
tl_channels_convert_to_gigagroup_gen.go#L153: return fmt.Errorf("unable to decode channels.convertToGigagroup#b290c69: field channel: %w", err)
tl_channels_create_channel_gen.go#L203: return fmt.Errorf("can't encode channels.createChannel#3d5fb10f as nil")
tl_channels_create_channel_gen.go#L212: return fmt.Errorf("can't encode channels.createChannel#3d5fb10f as nil")
tl_channels_create_channel_gen.go#L230: return fmt.Errorf("unable to encode channels.createChannel#3d5fb10f: field flags: %w", err)
tl_channels_create_channel_gen.go#L236: return fmt.Errorf("unable to encode channels.createChannel#3d5fb10f: field geo_point is nil")
tl_channels_create_channel_gen.go#L239: return fmt.Errorf("unable to encode channels.createChannel#3d5fb10f: field geo_point: %w", err)
tl_channels_create_channel_gen.go#L348: return fmt.Errorf("can't decode channels.createChannel#3d5fb10f to nil")
tl_channels_create_channel_gen.go#L351: return fmt.Errorf("unable to decode channels.createChannel#3d5fb10f: %w", err)
tl_channels_create_channel_gen.go#L359: return fmt.Errorf("can't decode channels.createChannel#3d5fb10f to nil")
tl_channels_create_channel_gen.go#L363: return fmt.Errorf("unable to decode channels.createChannel#3d5fb10f: field flags: %w", err)
tl_channels_create_channel_gen.go#L372: return fmt.Errorf("unable to decode channels.createChannel#3d5fb10f: field title: %w", err)
tl_channels_create_channel_gen.go#L379: return fmt.Errorf("unable to decode channels.createChannel#3d5fb10f: field about: %w", err)
tl_channels_create_channel_gen.go#L386: return fmt.Errorf("unable to decode channels.createChannel#3d5fb10f: field geo_point: %w", err)
tl_channels_create_channel_gen.go#L393: return fmt.Errorf("unable to decode channels.createChannel#3d5fb10f: field address: %w", err)
tl_channels_delete_channel_gen.go#L111: return fmt.Errorf("can't encode channels.deleteChannel#c0111fe3 as nil")
tl_channels_delete_channel_gen.go#L120: return fmt.Errorf("can't encode channels.deleteChannel#c0111fe3 as nil")
tl_channels_delete_channel_gen.go#L123: return fmt.Errorf("unable to encode channels.deleteChannel#c0111fe3: field channel is nil")
tl_channels_delete_channel_gen.go#L126: return fmt.Errorf("unable to encode channels.deleteChannel#c0111fe3: field channel: %w", err)
tl_channels_delete_channel_gen.go#L144: return fmt.Errorf("can't decode channels.deleteChannel#c0111fe3 to nil")
tl_channels_delete_channel_gen.go#L147: return fmt.Errorf("unable to decode channels.deleteChannel#c0111fe3: %w", err)
tl_channels_delete_channel_gen.go#L155: return fmt.Errorf("can't decode channels.deleteChannel#c0111fe3 to nil")
tl_channels_delete_channel_gen.go#L160: return fmt.Errorf("unable to decode channels.deleteChannel#c0111fe3: field channel: %w", err)
tl_channels_delete_history_gen.go#L122: return fmt.Errorf("can't encode channels.deleteHistory#af369d42 as nil")
tl_channels_delete_history_gen.go#L131: return fmt.Errorf("can't encode channels.deleteHistory#af369d42 as nil")
tl_channels_delete_history_gen.go#L134: return fmt.Errorf("unable to encode channels.deleteHistory#af369d42: field channel is nil")
tl_channels_delete_history_gen.go#L137: return fmt.Errorf("unable to encode channels.deleteHistory#af369d42: field channel: %w", err)
tl_channels_delete_history_gen.go#L161: return fmt.Errorf("can't decode channels.deleteHistory#af369d42 to nil")
tl_channels_delete_history_gen.go#L164: return fmt.Errorf("unable to decode channels.deleteHistory#af369d42: %w", err)
tl_channels_delete_history_gen.go#L172: return fmt.Errorf("can't decode channels.deleteHistory#af369d42 to nil")
tl_channels_delete_history_gen.go#L177: return fmt.Errorf("unable to decode channels.deleteHistory#af369d42: field channel: %w", err)
tl_channels_delete_history_gen.go#L184: return fmt.Errorf("unable to decode channels.deleteHistory#af369d42: field max_id: %w", err)
tl_channels_delete_messages_gen.go#L122: return fmt.Errorf("can't encode channels.deleteMessages#84c1fd4e as nil")
tl_channels_delete_messages_gen.go#L131: return fmt.Errorf("can't encode channels.deleteMessages#84c1fd4e as nil")
tl_channels_delete_messages_gen.go#L134: return fmt.Errorf("unable to encode channels.deleteMessages#84c1fd4e: field channel is nil")
tl_channels_delete_messages_gen.go#L137: return fmt.Errorf("unable to encode channels.deleteMessages#84c1fd4e: field channel: %w", err)
tl_channels_delete_messages_gen.go#L164: return fmt.Errorf("can't decode channels.deleteMessages#84c1fd4e to nil")
tl_channels_delete_messages_gen.go#L167: return fmt.Errorf("unable to decode channels.deleteMessages#84c1fd4e: %w", err)
tl_channels_delete_messages_gen.go#L175: return fmt.Errorf("can't decode channels.deleteMessages#84c1fd4e to nil")
tl_channels_delete_messages_gen.go#L180: return fmt.Errorf("unable to decode channels.deleteMessages#84c1fd4e: field channel: %w", err)
tl_channels_delete_messages_gen.go#L187: return fmt.Errorf("unable to decode channels.deleteMessages#84c1fd4e: field id: %w", err)
tl_channels_delete_messages_gen.go#L192: return fmt.Errorf("unable to decode channels.deleteMessages#84c1fd4e: field id: %w", err)
tl_channels_delete_user_history_gen.go#L122: return fmt.Errorf("can't encode channels.deleteUserHistory#d10dd71b as nil")
tl_channels_delete_user_history_gen.go#L131: return fmt.Errorf("can't encode channels.deleteUserHistory#d10dd71b as nil")
tl_channels_delete_user_history_gen.go#L134: return fmt.Errorf("unable to encode channels.deleteUserHistory#d10dd71b: field channel is nil")
tl_channels_delete_user_history_gen.go#L137: return fmt.Errorf("unable to encode channels.deleteUserHistory#d10dd71b: field channel: %w", err)
tl_channels_delete_user_history_gen.go#L140: return fmt.Errorf("unable to encode channels.deleteUserHistory#d10dd71b: field user_id is nil")
tl_channels_delete_user_history_gen.go#L143: return fmt.Errorf("unable to encode channels.deleteUserHistory#d10dd71b: field user_id: %w", err)
tl_channels_delete_user_history_gen.go#L166: return fmt.Errorf("can't decode channels.deleteUserHistory#d10dd71b to nil")
tl_channels_delete_user_history_gen.go#L169: return fmt.Errorf("unable to decode channels.deleteUserHistory#d10dd71b: %w", err)
tl_channels_delete_user_history_gen.go#L177: return fmt.Errorf("can't decode channels.deleteUserHistory#d10dd71b to nil")
tl_channels_delete_user_history_gen.go#L182: return fmt.Errorf("unable to decode channels.deleteUserHistory#d10dd71b: field channel: %w", err)
tl_channels_delete_user_history_gen.go#L189: return fmt.Errorf("unable to decode channels.deleteUserHistory#d10dd71b: field user_id: %w", err)
tl_channels_edit_admin_gen.go#L144: return fmt.Errorf("can't encode channels.editAdmin#d33c8902 as nil")
tl_channels_edit_admin_gen.go#L153: return fmt.Errorf("can't encode channels.editAdmin#d33c8902 as nil")
tl_channels_edit_admin_gen.go#L156: return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field channel is nil")
tl_channels_edit_admin_gen.go#L159: return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field channel: %w", err)
tl_channels_edit_admin_gen.go#L162: return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field user_id is nil")
tl_channels_edit_admin_gen.go#L165: return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field user_id: %w", err)
tl_channels_edit_admin_gen.go#L168: return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field admin_rights: %w", err)
tl_channels_edit_admin_gen.go#L202: return fmt.Errorf("can't decode channels.editAdmin#d33c8902 to nil")
tl_channels_edit_admin_gen.go#L205: return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: %w", err)
tl_channels_edit_admin_gen.go#L213: return fmt.Errorf("can't decode channels.editAdmin#d33c8902 to nil")
tl_channels_edit_admin_gen.go#L218: return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field channel: %w", err)
tl_channels_edit_admin_gen.go#L225: return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field user_id: %w", err)
tl_channels_edit_admin_gen.go#L231: return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field admin_rights: %w", err)
tl_channels_edit_admin_gen.go#L237: return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field rank: %w", err)
tl_channels_edit_banned_gen.go#L133: return fmt.Errorf("can't encode channels.editBanned#96e6cd81 as nil")
tl_channels_edit_banned_gen.go#L142: return fmt.Errorf("can't encode channels.editBanned#96e6cd81 as nil")
tl_channels_edit_banned_gen.go#L145: return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field channel is nil")
tl_channels_edit_banned_gen.go#L148: return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field channel: %w", err)
tl_channels_edit_banned_gen.go#L151: return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field participant is nil")
tl_channels_edit_banned_gen.go#L154: return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field participant: %w", err)
tl_channels_edit_banned_gen.go#L157: return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field banned_rights: %w", err)
tl_channels_edit_banned_gen.go#L185: return fmt.Errorf("can't decode channels.editBanned#96e6cd81 to nil")
tl_channels_edit_banned_gen.go#L188: return fmt.Errorf("unable to decode channels.editBanned#96e6cd81: %w", err)
tl_channels_edit_banned_gen.go#L196: return fmt.Errorf("can't decode channels.editBanned#96e6cd81 to nil")
tl_channels_edit_banned_gen.go#L201: return fmt.Errorf("unable to decode channels.editBanned#96e6cd81: field channel: %w", err)
tl_channels_edit_banned_gen.go#L208: return fmt.Errorf("unable to decode channels.editBanned#96e6cd81: field participant: %w", err)
tl_channels_edit_banned_gen.go#L214: return fmt.Errorf("unable to decode channels.editBanned#96e6cd81: field banned_rights: %w", err)
tl_channels_edit_creator_gen.go#L130: return fmt.Errorf("can't encode channels.editCreator#8f38cd1f as nil")
tl_channels_edit_creator_gen.go#L139: return fmt.Errorf("can't encode channels.editCreator#8f38cd1f as nil")
tl_channels_edit_creator_gen.go#L142: return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field channel is nil")
tl_channels_edit_creator_gen.go#L145: return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field channel: %w", err)
tl_channels_edit_creator_gen.go#L148: return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field user_id is nil")
tl_channels_edit_creator_gen.go#L151: return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field user_id: %w", err)
tl_channels_edit_creator_gen.go#L154: return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field password is nil")
tl_channels_edit_creator_gen.go#L157: return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field password: %w", err)
tl_channels_edit_creator_gen.go#L190: return fmt.Errorf("can't decode channels.editCreator#8f38cd1f to nil")
tl_channels_edit_creator_gen.go#L193: return fmt.Errorf("unable to decode channels.editCreator#8f38cd1f: %w", err)
tl_channels_edit_creator_gen.go#L201: return fmt.Errorf("can't decode channels.editCreator#8f38cd1f to nil")
tl_channels_edit_creator_gen.go#L206: return fmt.Errorf("unable to decode channels.editCreator#8f38cd1f: field channel: %w", err)
tl_channels_edit_creator_gen.go#L213: return fmt.Errorf("unable to decode channels.editCreator#8f38cd1f: field user_id: %w", err)
tl_channels_edit_creator_gen.go#L220: return fmt.Errorf("unable to decode channels.editCreator#8f38cd1f: field password: %w", err)
tl_channels_edit_location_gen.go#L130: return fmt.Errorf("can't encode channels.editLocation#58e63f6d as nil")
tl_channels_edit_location_gen.go#L139: return fmt.Errorf("can't encode channels.editLocation#58e63f6d as nil")
tl_channels_edit_location_gen.go#L142: return fmt.Errorf("unable to encode channels.editLocation#58e63f6d: field channel is nil")
tl_channels_edit_location_gen.go#L145: return fmt.Errorf("unable to encode channels.editLocation#58e63f6d: field channel: %w", err)
tl_channels_edit_location_gen.go#L148: return fmt.Errorf("unable to encode channels.editLocation#58e63f6d: field geo_point is nil")
tl_channels_edit_location_gen.go#L151: return fmt.Errorf("unable to encode channels.editLocation#58e63f6d: field geo_point: %w", err)
tl_channels_edit_location_gen.go#L185: return fmt.Errorf("can't decode channels.editLocation#58e63f6d to nil")
tl_channels_edit_location_gen.go#L188: return fmt.Errorf("unable to decode channels.editLocation#58e63f6d: %w", err)
tl_channels_edit_location_gen.go#L196: return fmt.Errorf("can't decode channels.editLocation#58e63f6d to nil")
tl_channels_edit_location_gen.go#L201: return fmt.Errorf("unable to decode channels.editLocation#58e63f6d: field channel: %w", err)
tl_channels_edit_location_gen.go#L208: return fmt.Errorf("unable to decode channels.editLocation#58e63f6d: field geo_point: %w", err)
tl_channels_edit_location_gen.go#L215: return fmt.Errorf("unable to decode channels.editLocation#58e63f6d: field address: %w", err)
tl_channels_edit_photo_gen.go#L119: return fmt.Errorf("can't encode channels.editPhoto#f12e57c9 as nil")
tl_channels_edit_photo_gen.go#L128: return fmt.Errorf("can't encode channels.editPhoto#f12e57c9 as nil")
tl_channels_edit_photo_gen.go#L131: return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field channel is nil")
tl_channels_edit_photo_gen.go#L134: return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field channel: %w", err)
tl_channels_edit_photo_gen.go#L137: return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field photo is nil")
tl_channels_edit_photo_gen.go#L140: return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field photo: %w", err)
tl_channels_edit_photo_gen.go#L163: return fmt.Errorf("can't decode channels.editPhoto#f12e57c9 to nil")
tl_channels_edit_photo_gen.go#L166: return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: %w", err)
tl_channels_edit_photo_gen.go#L174: return fmt.Errorf("can't decode channels.editPhoto#f12e57c9 to nil")
tl_channels_edit_photo_gen.go#L179: return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: field channel: %w", err)
tl_channels_edit_photo_gen.go#L186: return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: field photo: %w", err)
tl_channels_edit_title_gen.go#L119: return fmt.Errorf("can't encode channels.editTitle#566decd0 as nil")
tl_channels_edit_title_gen.go#L128: return fmt.Errorf("can't encode channels.editTitle#566decd0 as nil")
tl_channels_edit_title_gen.go#L131: return fmt.Errorf("unable to encode channels.editTitle#566decd0: field channel is nil")
tl_channels_edit_title_gen.go#L134: return fmt.Errorf("unable to encode channels.editTitle#566decd0: field channel: %w", err)
tl_channels_edit_title_gen.go#L158: return fmt.Errorf("can't decode channels.editTitle#566decd0 to nil")
tl_channels_edit_title_gen.go#L161: return fmt.Errorf("unable to decode channels.editTitle#566decd0: %w", err)
tl_channels_edit_title_gen.go#L169: return fmt.Errorf("can't decode channels.editTitle#566decd0 to nil")
tl_channels_edit_title_gen.go#L174: return fmt.Errorf("unable to decode channels.editTitle#566decd0: field channel: %w", err)
tl_channels_edit_title_gen.go#L181: return fmt.Errorf("unable to decode channels.editTitle#566decd0: field title: %w", err)
tl_channels_export_message_link_gen.go#L151: return fmt.Errorf("can't encode channels.exportMessageLink#e63fadeb as nil")
tl_channels_export_message_link_gen.go#L160: return fmt.Errorf("can't encode channels.exportMessageLink#e63fadeb as nil")
tl_channels_export_message_link_gen.go#L169: return fmt.Errorf("unable to encode channels.exportMessageLink#e63fadeb: field flags: %w", err)
tl_channels_export_message_link_gen.go#L172: return fmt.Errorf("unable to encode channels.exportMessageLink#e63fadeb: field channel is nil")
tl_channels_export_message_link_gen.go#L175: return fmt.Errorf("unable to encode channels.exportMessageLink#e63fadeb: field channel: %w", err)
tl_channels_export_message_link_gen.go#L231: return fmt.Errorf("can't decode channels.exportMessageLink#e63fadeb to nil")
tl_channels_export_message_link_gen.go#L234: return fmt.Errorf("unable to decode channels.exportMessageLink#e63fadeb: %w", err)
tl_channels_export_message_link_gen.go#L242: return fmt.Errorf("can't decode channels.exportMessageLink#e63fadeb to nil")
tl_channels_export_message_link_gen.go#L246: return fmt.Errorf("unable to decode channels.exportMessageLink#e63fadeb: field flags: %w", err)
tl_channels_export_message_link_gen.go#L254: return fmt.Errorf("unable to decode channels.exportMessageLink#e63fadeb: field channel: %w", err)
tl_channels_export_message_link_gen.go#L261: return fmt.Errorf("unable to decode channels.exportMessageLink#e63fadeb: field id: %w", err)
tl_channels_get_admin_log_gen.go#L203: return fmt.Errorf("can't encode channels.getAdminLog#33ddf480 as nil")
tl_channels_get_admin_log_gen.go#L212: return fmt.Errorf("can't encode channels.getAdminLog#33ddf480 as nil")
tl_channels_get_admin_log_gen.go#L221: return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field flags: %w", err)
tl_channels_get_admin_log_gen.go#L224: return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field channel is nil")
tl_channels_get_admin_log_gen.go#L227: return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field channel: %w", err)
tl_channels_get_admin_log_gen.go#L232: return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field events_filter: %w", err)
tl_channels_get_admin_log_gen.go#L239: return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field admins element with index %d is nil", idx)
tl_channels_get_admin_log_gen.go#L242: return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field admins element with index %d: %w", idx, err)
tl_channels_get_admin_log_gen.go#L323: return fmt.Errorf("can't decode channels.getAdminLog#33ddf480 to nil")
tl_channels_get_admin_log_gen.go#L326: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: %w", err)
tl_channels_get_admin_log_gen.go#L334: return fmt.Errorf("can't decode channels.getAdminLog#33ddf480 to nil")
tl_channels_get_admin_log_gen.go#L338: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field flags: %w", err)
tl_channels_get_admin_log_gen.go#L344: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field channel: %w", err)
tl_channels_get_admin_log_gen.go#L351: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field q: %w", err)
tl_channels_get_admin_log_gen.go#L357: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field events_filter: %w", err)
tl_channels_get_admin_log_gen.go#L363: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field admins: %w", err)
tl_channels_get_admin_log_gen.go#L368: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field admins: %w", err)
tl_channels_get_admin_log_gen.go#L376: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field max_id: %w", err)
tl_channels_get_admin_log_gen.go#L383: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field min_id: %w", err)
tl_channels_get_admin_log_gen.go#L390: return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field limit: %w", err)
tl_channels_get_admined_public_channels_gen.go#L143: return fmt.Errorf("can't encode channels.getAdminedPublicChannels#f8b036af as nil")
tl_channels_get_admined_public_channels_gen.go#L152: return fmt.Errorf("can't encode channels.getAdminedPublicChannels#f8b036af as nil")
tl_channels_get_admined_public_channels_gen.go#L161: return fmt.Errorf("unable to encode channels.getAdminedPublicChannels#f8b036af: field flags: %w", err)
tl_channels_get_admined_public_channels_gen.go#L201: return fmt.Errorf("can't decode channels.getAdminedPublicChannels#f8b036af to nil")
tl_channels_get_admined_public_channels_gen.go#L204: return fmt.Errorf("unable to decode channels.getAdminedPublicChannels#f8b036af: %w", err)
tl_channels_get_admined_public_channels_gen.go#L212: return fmt.Errorf("can't decode channels.getAdminedPublicChannels#f8b036af to nil")
tl_channels_get_admined_public_channels_gen.go#L216: return fmt.Errorf("unable to decode channels.getAdminedPublicChannels#f8b036af: field flags: %w", err)
tl_channels_get_channels_gen.go#L108: return fmt.Errorf("can't encode channels.getChannels#a7f6bbb as nil")
tl_channels_get_channels_gen.go#L117: return fmt.Errorf("can't encode channels.getChannels#a7f6bbb as nil")
tl_channels_get_channels_gen.go#L122: return fmt.Errorf("unable to encode channels.getChannels#a7f6bbb: field id element with index %d is nil", idx)
tl_channels_get_channels_gen.go#L125: return fmt.Errorf("unable to encode channels.getChannels#a7f6bbb: field id element with index %d: %w", idx, err)
tl_channels_get_channels_gen.go#L144: return fmt.Errorf("can't decode channels.getChannels#a7f6bbb to nil")
tl_channels_get_channels_gen.go#L147: return fmt.Errorf("unable to decode channels.getChannels#a7f6bbb: %w", err)
tl_channels_get_channels_gen.go#L155: return fmt.Errorf("can't decode channels.getChannels#a7f6bbb to nil")
tl_channels_get_channels_gen.go#L160: return fmt.Errorf("unable to decode channels.getChannels#a7f6bbb: field id: %w", err)
tl_channels_get_channels_gen.go#L165: return fmt.Errorf("unable to decode channels.getChannels#a7f6bbb: field id: %w", err)
tl_channels_get_full_channel_gen.go#L105: return fmt.Errorf("can't encode channels.getFullChannel#8736a09 as nil")
tl_channels_get_full_channel_gen.go#L114: return fmt.Errorf("can't encode channels.getFullChannel#8736a09 as nil")
tl_channels_get_full_channel_gen.go#L117: return fmt.Errorf("unable to encode channels.getFullChannel#8736a09: field channel is nil")
tl_channels_get_full_channel_gen.go#L120: return fmt.Errorf("unable to encode channels.getFullChannel#8736a09: field channel: %w", err)
tl_channels_get_full_channel_gen.go#L138: return fmt.Errorf("can't decode channels.getFullChannel#8736a09 to nil")
tl_channels_get_full_channel_gen.go#L141: return fmt.Errorf("unable to decode channels.getFullChannel#8736a09: %w", err)
tl_channels_get_full_channel_gen.go#L149: return fmt.Errorf("can't decode channels.getFullChannel#8736a09 to nil")
tl_channels_get_full_channel_gen.go#L154: return fmt.Errorf("unable to decode channels.getFullChannel#8736a09: field channel: %w", err)
tl_channels_get_groups_for_discussion_gen.go#L98: return fmt.Errorf("can't encode channels.getGroupsForDiscussion#f5dad378 as nil")
tl_channels_get_groups_for_discussion_gen.go#L107: return fmt.Errorf("can't encode channels.getGroupsForDiscussion#f5dad378 as nil")
tl_channels_get_groups_for_discussion_gen.go#L115: return fmt.Errorf("can't decode channels.getGroupsForDiscussion#f5dad378 to nil")
tl_channels_get_groups_for_discussion_gen.go#L118: return fmt.Errorf("unable to decode channels.getGroupsForDiscussion#f5dad378: %w", err)
tl_channels_get_groups_for_discussion_gen.go#L126: return fmt.Errorf("can't decode channels.getGroupsForDiscussion#f5dad378 to nil")
tl_channels_get_inactive_channels_gen.go#L88: return fmt.Errorf("can't encode channels.getInactiveChannels#11e831ee as nil")
tl_channels_get_inactive_channels_gen.go#L97: return fmt.Errorf("can't encode channels.getInactiveChannels#11e831ee as nil")
tl_channels_get_inactive_channels_gen.go#L105: return fmt.Errorf("can't decode channels.getInactiveChannels#11e831ee to nil")
tl_channels_get_inactive_channels_gen.go#L108: return fmt.Errorf("unable to decode channels.getInactiveChannels#11e831ee: %w", err)
tl_channels_get_inactive_channels_gen.go#L116: return fmt.Errorf("can't decode channels.getInactiveChannels#11e831ee to nil")
tl_channels_get_left_channels_gen.go#L111: return fmt.Errorf("can't encode channels.getLeftChannels#8341ecc0 as nil")
tl_channels_get_left_channels_gen.go#L120: return fmt.Errorf("can't encode channels.getLeftChannels#8341ecc0 as nil")
tl_channels_get_left_channels_gen.go#L134: return fmt.Errorf("can't decode channels.getLeftChannels#8341ecc0 to nil")
tl_channels_get_left_channels_gen.go#L137: return fmt.Errorf("unable to decode channels.getLeftChannels#8341ecc0: %w", err)
tl_channels_get_left_channels_gen.go#L145: return fmt.Errorf("can't decode channels.getLeftChannels#8341ecc0 to nil")
tl_channels_get_left_channels_gen.go#L150: return fmt.Errorf("unable to decode channels.getLeftChannels#8341ecc0: field offset: %w", err)
tl_channels_get_messages_gen.go#L119: return fmt.Errorf("can't encode channels.getMessages#ad8c9a23 as nil")
tl_channels_get_messages_gen.go#L128: return fmt.Errorf("can't encode channels.getMessages#ad8c9a23 as nil")
tl_channels_get_messages_gen.go#L131: return fmt.Errorf("unable to encode channels.getMessages#ad8c9a23: field channel is nil")
tl_channels_get_messages_gen.go#L134: return fmt.Errorf("unable to encode channels.getMessages#ad8c9a23: field channel: %w", err)
tl_channels_get_messages_gen.go#L139: return fmt.Errorf("unable to encode channels.getMessages#ad8c9a23: field id element with index %d is nil", idx)
tl_channels_get_messages_gen.go#L142: return fmt.Errorf("unable to encode channels.getMessages#ad8c9a23: field id element with index %d: %w", idx, err)
tl_channels_get_messages_gen.go#L171: return fmt.Errorf("can't decode channels.getMessages#ad8c9a23 to nil")
tl_channels_get_messages_gen.go#L174: return fmt.Errorf("unable to decode channels.getMessages#ad8c9a23: %w", err)
tl_channels_get_messages_gen.go#L182: return fmt.Errorf("can't decode channels.getMessages#ad8c9a23 to nil")
tl_channels_get_messages_gen.go#L187: return fmt.Errorf("unable to decode channels.getMessages#ad8c9a23: field channel: %w", err)
tl_channels_get_messages_gen.go#L194: return fmt.Errorf("unable to decode channels.getMessages#ad8c9a23: field id: %w", err)
tl_channels_get_messages_gen.go#L199: return fmt.Errorf("unable to decode channels.getMessages#ad8c9a23: field id: %w", err)
tl_channels_get_participant_gen.go#L119: return fmt.Errorf("can't encode channels.getParticipant#a0ab6cc6 as nil")
tl_channels_get_participant_gen.go#L128: return fmt.Errorf("can't encode channels.getParticipant#a0ab6cc6 as nil")
tl_channels_get_participant_gen.go#L131: return fmt.Errorf("unable to encode channels.getParticipant#a0ab6cc6: field channel is nil")
tl_channels_get_participant_gen.go#L134: return fmt.Errorf("unable to encode channels.getParticipant#a0ab6cc6: field channel: %w", err)
tl_channels_get_participant_gen.go#L137: return fmt.Errorf("unable to encode channels.getParticipant#a0ab6cc6: field participant is nil")
tl_channels_get_participant_gen.go#L140: return fmt.Errorf("unable to encode channels.getParticipant#a0ab6cc6: field participant: %w", err)
tl_channels_get_participant_gen.go#L163: return fmt.Errorf("can't decode channels.getParticipant#a0ab6cc6 to nil")
tl_channels_get_participant_gen.go#L166: return fmt.Errorf("unable to decode channels.getParticipant#a0ab6cc6: %w", err)
tl_channels_get_participant_gen.go#L174: return fmt.Errorf("can't decode channels.getParticipant#a0ab6cc6 to nil")
tl_channels_get_participant_gen.go#L179: return fmt.Errorf("unable to decode channels.getParticipant#a0ab6cc6: field channel: %w", err)
tl_channels_get_participant_gen.go#L186: return fmt.Errorf("unable to decode channels.getParticipant#a0ab6cc6: field participant: %w", err)
tl_channels_get_participants_gen.go#L161: return fmt.Errorf("can't encode channels.getParticipants#123e05e9 as nil")
tl_channels_get_participants_gen.go#L170: return fmt.Errorf("can't encode channels.getParticipants#123e05e9 as nil")
tl_channels_get_participants_gen.go#L173: return fmt.Errorf("unable to encode channels.getParticipants#123e05e9: field channel is nil")
tl_channels_get_participants_gen.go#L176: return fmt.Errorf("unable to encode channels.getParticipants#123e05e9: field channel: %w", err)
tl_channels_get_participants_gen.go#L179: return fmt.Errorf("unable to encode channels.getParticipants#123e05e9: field filter is nil")
tl_channels_get_participants_gen.go#L182: return fmt.Errorf("unable to encode channels.getParticipants#123e05e9: field filter: %w", err)
tl_channels_get_participants_gen.go#L223: return fmt.Errorf("can't decode channels.getParticipants#123e05e9 to nil")
tl_channels_get_participants_gen.go#L226: return fmt.Errorf("unable to decode channels.getParticipants#123e05e9: %w", err)
tl_channels_get_participants_gen.go#L234: return fmt.Errorf("can't decode channels.getParticipants#123e05e9 to nil")
tl_channels_get_participants_gen.go#L239: return fmt.Errorf("unable to decode channels.getParticipants#123e05e9: field channel: %w", err)
tl_channels_get_participants_gen.go#L246: return fmt.Errorf("unable to decode channels.getParticipants#123e05e9: field filter: %w", err)
tl_channels_get_participants_gen.go#L253: return fmt.Errorf("unable to decode channels.getParticipants#123e05e9: field offset: %w", err)
tl_channels_get_participants_gen.go#L260: return fmt.Errorf("unable to decode channels.getParticipants#123e05e9: field limit: %w", err)
tl_channels_get_participants_gen.go#L267: return fmt.Errorf("unable to decode channels.getParticipants#123e05e9: field hash: %w", err)
tl_channels_invite_to_channel_gen.go#L116: return fmt.Errorf("can't encode channels.inviteToChannel#199f3a6c as nil")
tl_channels_invite_to_channel_gen.go#L125: return fmt.Errorf("can't encode channels.inviteToChannel#199f3a6c as nil")
tl_channels_invite_to_channel_gen.go#L128: return fmt.Errorf("unable to encode channels.inviteToChannel#199f3a6c: field channel is nil")
tl_channels_invite_to_channel_gen.go#L131: return fmt.Errorf("unable to encode channels.inviteToChannel#199f3a6c: field channel: %w", err)
tl_channels_invite_to_channel_gen.go#L136: return fmt.Errorf("unable to encode channels.inviteToChannel#199f3a6c: field users element with index %d is nil", idx)
tl_channels_invite_to_channel_gen.go#L139: return fmt.Errorf("unable to encode channels.inviteToChannel#199f3a6c: field users element with index %d: %w", idx, err)
tl_channels_invite_to_channel_gen.go#L168: return fmt.Errorf("can't decode channels.inviteToChannel#199f3a6c to nil")
tl_channels_invite_to_channel_gen.go#L171: return fmt.Errorf("unable to decode channels.inviteToChannel#199f3a6c: %w", err)
tl_channels_invite_to_channel_gen.go#L179: return fmt.Errorf("can't decode channels.inviteToChannel#199f3a6c to nil")
tl_channels_invite_to_channel_gen.go#L184: return fmt.Errorf("unable to decode channels.inviteToChannel#199f3a6c: field channel: %w", err)
tl_channels_invite_to_channel_gen.go#L191: return fmt.Errorf("unable to decode channels.inviteToChannel#199f3a6c: field users: %w", err)
tl_channels_invite_to_channel_gen.go#L196: return fmt.Errorf("unable to decode channels.inviteToChannel#199f3a6c: field users: %w", err)
tl_channels_join_channel_gen.go#L105: return fmt.Errorf("can't encode channels.joinChannel#24b524c5 as nil")
tl_channels_join_channel_gen.go#L114: return fmt.Errorf("can't encode channels.joinChannel#24b524c5 as nil")
tl_channels_join_channel_gen.go#L117: return fmt.Errorf("unable to encode channels.joinChannel#24b524c5: field channel is nil")
tl_channels_join_channel_gen.go#L120: return fmt.Errorf("unable to encode channels.joinChannel#24b524c5: field channel: %w", err)
tl_channels_join_channel_gen.go#L138: return fmt.Errorf("can't decode channels.joinChannel#24b524c5 to nil")
tl_channels_join_channel_gen.go#L141: return fmt.Errorf("unable to decode channels.joinChannel#24b524c5: %w", err)
tl_channels_join_channel_gen.go#L149: return fmt.Errorf("can't decode channels.joinChannel#24b524c5 to nil")
tl_channels_join_channel_gen.go#L154: return fmt.Errorf("unable to decode channels.joinChannel#24b524c5: field channel: %w", err)
tl_channels_leave_channel_gen.go#L111: return fmt.Errorf("can't encode channels.leaveChannel#f836aa95 as nil")
tl_channels_leave_channel_gen.go#L120: return fmt.Errorf("can't encode channels.leaveChannel#f836aa95 as nil")
tl_channels_leave_channel_gen.go#L123: return fmt.Errorf("unable to encode channels.leaveChannel#f836aa95: field channel is nil")
tl_channels_leave_channel_gen.go#L126: return fmt.Errorf("unable to encode channels.leaveChannel#f836aa95: field channel: %w", err)
tl_channels_leave_channel_gen.go#L144: return fmt.Errorf("can't decode channels.leaveChannel#f836aa95 to nil")
tl_channels_leave_channel_gen.go#L147: return fmt.Errorf("unable to decode channels.leaveChannel#f836aa95: %w", err)
tl_channels_leave_channel_gen.go#L155: return fmt.Errorf("can't decode channels.leaveChannel#f836aa95 to nil")
tl_channels_leave_channel_gen.go#L160: return fmt.Errorf("unable to decode channels.leaveChannel#f836aa95: field channel: %w", err)
tl_channels_read_history_gen.go#L122: return fmt.Errorf("can't encode channels.readHistory#cc104937 as nil")
tl_channels_read_history_gen.go#L131: return fmt.Errorf("can't encode channels.readHistory#cc104937 as nil")
tl_channels_read_history_gen.go#L134: return fmt.Errorf("unable to encode channels.readHistory#cc104937: field channel is nil")
tl_channels_read_history_gen.go#L137: return fmt.Errorf("unable to encode channels.readHistory#cc104937: field channel: %w", err)
tl_channels_read_history_gen.go#L161: return fmt.Errorf("can't decode channels.readHistory#cc104937 to nil")
tl_channels_read_history_gen.go#L164: return fmt.Errorf("unable to decode channels.readHistory#cc104937: %w", err)
tl_channels_read_history_gen.go#L172: return fmt.Errorf("can't decode channels.readHistory#cc104937 to nil")
tl_channels_read_history_gen.go#L177: return fmt.Errorf("unable to decode channels.readHistory#cc104937: field channel: %w", err)
tl_channels_read_history_gen.go#L184: return fmt.Errorf("unable to decode channels.readHistory#cc104937: field max_id: %w", err)
tl_channels_read_message_contents_gen.go#L122: return fmt.Errorf("can't encode channels.readMessageContents#eab5dc38 as nil")
tl_channels_read_message_contents_gen.go#L131: return fmt.Errorf("can't encode channels.readMessageContents#eab5dc38 as nil")
tl_channels_read_message_contents_gen.go#L134: return fmt.Errorf("unable to encode channels.readMessageContents#eab5dc38: field channel is nil")
tl_channels_read_message_contents_gen.go#L137: return fmt.Errorf("unable to encode channels.readMessageContents#eab5dc38: field channel: %w", err)
tl_channels_read_message_contents_gen.go#L164: return fmt.Errorf("can't decode channels.readMessageContents#eab5dc38 to nil")
tl_channels_read_message_contents_gen.go#L167: return fmt.Errorf("unable to decode channels.readMessageContents#eab5dc38: %w", err)
tl_channels_read_message_contents_gen.go#L175: return fmt.Errorf("can't decode channels.readMessageContents#eab5dc38 to nil")
tl_channels_read_message_contents_gen.go#L180: return fmt.Errorf("unable to decode channels.readMessageContents#eab5dc38: field channel: %w", err)
tl_channels_read_message_contents_gen.go#L187: return fmt.Errorf("unable to decode channels.readMessageContents#eab5dc38: field id: %w", err)
tl_channels_read_message_contents_gen.go#L192: return fmt.Errorf("unable to decode channels.readMessageContents#eab5dc38: field id: %w", err)
tl_channels_report_spam_gen.go#L128: return fmt.Errorf("can't encode channels.reportSpam#fe087810 as nil")
tl_channels_report_spam_gen.go#L137: return fmt.Errorf("can't encode channels.reportSpam#fe087810 as nil")
tl_channels_report_spam_gen.go#L140: return fmt.Errorf("unable to encode channels.reportSpam#fe087810: field channel is nil")
tl_channels_report_spam_gen.go#L143: return fmt.Errorf("unable to encode channels.reportSpam#fe087810: field channel: %w", err)
tl_channels_report_spam_gen.go#L146: return fmt.Errorf("unable to encode channels.reportSpam#fe087810: field user_id is nil")
tl_channels_report_spam_gen.go#L149: return fmt.Errorf("unable to encode channels.reportSpam#fe087810: field user_id: %w", err)
tl_channels_report_spam_gen.go#L181: return fmt.Errorf("can't decode channels.reportSpam#fe087810 to nil")
tl_channels_report_spam_gen.go#L184: return fmt.Errorf("unable to decode channels.reportSpam#fe087810: %w", err)
tl_channels_report_spam_gen.go#L192: return fmt.Errorf("can't decode channels.reportSpam#fe087810 to nil")
tl_channels_report_spam_gen.go#L197: return fmt.Errorf("unable to decode channels.reportSpam#fe087810: field channel: %w", err)
tl_channels_report_spam_gen.go#L204: return fmt.Errorf("unable to decode channels.reportSpam#fe087810: field user_id: %w", err)
tl_channels_report_spam_gen.go#L211: return fmt.Errorf("unable to decode channels.reportSpam#fe087810: field id: %w", err)
tl_channels_report_spam_gen.go#L216: return fmt.Errorf("unable to decode channels.reportSpam#fe087810: field id: %w", err)
tl_channels_set_discussion_group_gen.go#L122: return fmt.Errorf("can't encode channels.setDiscussionGroup#40582bb2 as nil")
tl_channels_set_discussion_group_gen.go#L131: return fmt.Errorf("can't encode channels.setDiscussionGroup#40582bb2 as nil")
tl_channels_set_discussion_group_gen.go#L134: return fmt.Errorf("unable to encode channels.setDiscussionGroup#40582bb2: field broadcast is nil")
tl_channels_set_discussion_group_gen.go#L137: return fmt.Errorf("unable to encode channels.setDiscussionGroup#40582bb2: field broadcast: %w", err)
tl_channels_set_discussion_group_gen.go#L140: return fmt.Errorf("unable to encode channels.setDiscussionGroup#40582bb2: field group is nil")
tl_channels_set_discussion_group_gen.go#L143: return fmt.Errorf("unable to encode channels.setDiscussionGroup#40582bb2: field group: %w", err)
tl_channels_set_discussion_group_gen.go#L171: return fmt.Errorf("can't decode channels.setDiscussionGroup#40582bb2 to nil")
tl_channels_set_discussion_group_gen.go#L174: return fmt.Errorf("unable to decode channels.setDiscussionGroup#40582bb2: %w", err)
tl_channels_set_discussion_group_gen.go#L182: return fmt.Errorf("can't decode channels.setDiscussionGroup#40582bb2 to nil")
tl_channels_set_discussion_group_gen.go#L187: return fmt.Errorf("unable to decode channels.setDiscussionGroup#40582bb2: field broadcast: %w", err)
tl_channels_set_discussion_group_gen.go#L194: return fmt.Errorf("unable to decode channels.setDiscussionGroup#40582bb2: field group: %w", err)
tl_channels_set_stickers_gen.go#L116: return fmt.Errorf("can't encode channels.setStickers#ea8ca4f9 as nil")
tl_channels_set_stickers_gen.go#L125: return fmt.Errorf("can't encode channels.setStickers#ea8ca4f9 as nil")
tl_channels_set_stickers_gen.go#L128: return fmt.Errorf("unable to encode channels.setStickers#ea8ca4f9: field channel is nil")
tl_channels_set_stickers_gen.go#L131: return fmt.Errorf("unable to encode channels.setStickers#ea8ca4f9: field channel: %w", err)
tl_channels_set_stickers_gen.go#L134: return fmt.Errorf("unable to encode channels.setStickers#ea8ca4f9: field stickerset is nil")
tl_channels_set_stickers_gen.go#L137: return fmt.Errorf("unable to encode channels.setStickers#ea8ca4f9: field stickerset: %w", err)
tl_channels_set_stickers_gen.go#L160: return fmt.Errorf("can't decode channels.setStickers#ea8ca4f9 to nil")
tl_channels_set_stickers_gen.go#L163: return fmt.Errorf("unable to decode channels.setStickers#ea8ca4f9: %w", err)
tl_channels_set_stickers_gen.go#L171: return fmt.Errorf("can't decode channels.setStickers#ea8ca4f9 to nil")
tl_channels_set_stickers_gen.go#L176: return fmt.Errorf("unable to decode channels.setStickers#ea8ca4f9: field channel: %w", err)
tl_channels_set_stickers_gen.go#L183: return fmt.Errorf("unable to decode channels.setStickers#ea8ca4f9: field stickerset: %w", err)
tl_channels_toggle_pre_history_hidden_gen.go#L116: return fmt.Errorf("can't encode channels.togglePreHistoryHidden#eabbb94c as nil")
tl_channels_toggle_pre_history_hidden_gen.go#L125: return fmt.Errorf("can't encode channels.togglePreHistoryHidden#eabbb94c as nil")
tl_channels_toggle_pre_history_hidden_gen.go#L128: return fmt.Errorf("unable to encode channels.togglePreHistoryHidden#eabbb94c: field channel is nil")
tl_channels_toggle_pre_history_hidden_gen.go#L131: return fmt.Errorf("unable to encode channels.togglePreHistoryHidden#eabbb94c: field channel: %w", err)
tl_channels_toggle_pre_history_hidden_gen.go#L155: return fmt.Errorf("can't decode channels.togglePreHistoryHidden#eabbb94c to nil")
tl_channels_toggle_pre_history_hidden_gen.go#L158: return fmt.Errorf("unable to decode channels.togglePreHistoryHidden#eabbb94c: %w", err)
tl_channels_toggle_pre_history_hidden_gen.go#L166: return fmt.Errorf("can't decode channels.togglePreHistoryHidden#eabbb94c to nil")
tl_channels_toggle_pre_history_hidden_gen.go#L171: return fmt.Errorf("unable to decode channels.togglePreHistoryHidden#eabbb94c: field channel: %w", err)
tl_channels_toggle_pre_history_hidden_gen.go#L178: return fmt.Errorf("unable to decode channels.togglePreHistoryHidden#eabbb94c: field enabled: %w", err)
tl_channels_toggle_signatures_gen.go#L116: return fmt.Errorf("can't encode channels.toggleSignatures#1f69b606 as nil")
tl_channels_toggle_signatures_gen.go#L125: return fmt.Errorf("can't encode channels.toggleSignatures#1f69b606 as nil")
tl_channels_toggle_signatures_gen.go#L128: return fmt.Errorf("unable to encode channels.toggleSignatures#1f69b606: field channel is nil")
tl_channels_toggle_signatures_gen.go#L131: return fmt.Errorf("unable to encode channels.toggleSignatures#1f69b606: field channel: %w", err)
tl_channels_toggle_signatures_gen.go#L155: return fmt.Errorf("can't decode channels.toggleSignatures#1f69b606 to nil")
tl_channels_toggle_signatures_gen.go#L158: return fmt.Errorf("unable to decode channels.toggleSignatures#1f69b606: %w", err)
tl_channels_toggle_signatures_gen.go#L166: return fmt.Errorf("can't decode channels.toggleSignatures#1f69b606 to nil")
tl_channels_toggle_signatures_gen.go#L171: return fmt.Errorf("unable to decode channels.toggleSignatures#1f69b606: field channel: %w", err)
tl_channels_toggle_signatures_gen.go#L178: return fmt.Errorf("unable to decode channels.toggleSignatures#1f69b606: field enabled: %w", err)
tl_channels_toggle_slow_mode_gen.go#L121: return fmt.Errorf("can't encode channels.toggleSlowMode#edd49ef0 as nil")
tl_channels_toggle_slow_mode_gen.go#L130: return fmt.Errorf("can't encode channels.toggleSlowMode#edd49ef0 as nil")
tl_channels_toggle_slow_mode_gen.go#L133: return fmt.Errorf("unable to encode channels.toggleSlowMode#edd49ef0: field channel is nil")
tl_channels_toggle_slow_mode_gen.go#L136: return fmt.Errorf("unable to encode channels.toggleSlowMode#edd49ef0: field channel: %w", err)
tl_channels_toggle_slow_mode_gen.go#L160: return fmt.Errorf("can't decode channels.toggleSlowMode#edd49ef0 to nil")
tl_channels_toggle_slow_mode_gen.go#L163: return fmt.Errorf("unable to decode channels.toggleSlowMode#edd49ef0: %w", err)
tl_channels_toggle_slow_mode_gen.go#L171: return fmt.Errorf("can't decode channels.toggleSlowMode#edd49ef0 to nil")
tl_channels_toggle_slow_mode_gen.go#L176: return fmt.Errorf("unable to decode channels.toggleSlowMode#edd49ef0: field channel: %w", err)
tl_channels_toggle_slow_mode_gen.go#L183: return fmt.Errorf("unable to decode channels.toggleSlowMode#edd49ef0: field seconds: %w", err)
tl_channels_update_username_gen.go#L116: return fmt.Errorf("can't encode channels.updateUsername#3514b3de as nil")
tl_channels_update_username_gen.go#L125: return fmt.Errorf("can't encode channels.updateUsername#3514b3de as nil")
tl_channels_update_username_gen.go#L128: return fmt.Errorf("unable to encode channels.updateUsername#3514b3de: field channel is nil")
tl_channels_update_username_gen.go#L131: return fmt.Errorf("unable to encode channels.updateUsername#3514b3de: field channel: %w", err)
tl_channels_update_username_gen.go#L155: return fmt.Errorf("can't decode channels.updateUsername#3514b3de to nil")
tl_channels_update_username_gen.go#L158: return fmt.Errorf("unable to decode channels.updateUsername#3514b3de: %w", err)
tl_channels_update_username_gen.go#L166: return fmt.Errorf("can't decode channels.updateUsername#3514b3de to nil")
tl_channels_update_username_gen.go#L171: return fmt.Errorf("unable to decode channels.updateUsername#3514b3de: field channel: %w", err)
tl_channels_update_username_gen.go#L178: return fmt.Errorf("unable to decode channels.updateUsername#3514b3de: field username: %w", err)
tl_chat_admin_rights_gen.go#L262: return fmt.Errorf("can't encode chatAdminRights#5fb224d5 as nil")
tl_chat_admin_rights_gen.go#L271: return fmt.Errorf("can't encode chatAdminRights#5fb224d5 as nil")
tl_chat_admin_rights_gen.go#L307: return fmt.Errorf("unable to encode chatAdminRights#5fb224d5: field flags: %w", err)
tl_chat_admin_rights_gen.go#L491: return fmt.Errorf("can't decode chatAdminRights#5fb224d5 to nil")
tl_chat_admin_rights_gen.go#L494: return fmt.Errorf("unable to decode chatAdminRights#5fb224d5: %w", err)
tl_chat_admin_rights_gen.go#L502: return fmt.Errorf("can't decode chatAdminRights#5fb224d5 to nil")
tl_chat_admin_rights_gen.go#L506: return fmt.Errorf("unable to decode chatAdminRights#5fb224d5: field flags: %w", err)
tl_chat_admin_with_invites_gen.go#L126: return fmt.Errorf("can't encode chatAdminWithInvites#dfd2330f as nil")
tl_chat_admin_with_invites_gen.go#L135: return fmt.Errorf("can't encode chatAdminWithInvites#dfd2330f as nil")
tl_chat_admin_with_invites_gen.go#L161: return fmt.Errorf("can't decode chatAdminWithInvites#dfd2330f to nil")
tl_chat_admin_with_invites_gen.go#L164: return fmt.Errorf("unable to decode chatAdminWithInvites#dfd2330f: %w", err)
tl_chat_admin_with_invites_gen.go#L172: return fmt.Errorf("can't decode chatAdminWithInvites#dfd2330f to nil")
tl_chat_admin_with_invites_gen.go#L177: return fmt.Errorf("unable to decode chatAdminWithInvites#dfd2330f: field admin_id: %w", err)
tl_chat_admin_with_invites_gen.go#L184: return fmt.Errorf("unable to decode chatAdminWithInvites#dfd2330f: field invites_count: %w", err)
tl_chat_admin_with_invites_gen.go#L191: return fmt.Errorf("unable to decode chatAdminWithInvites#dfd2330f: field revoked_invites_count: %w", err)
tl_chat_banned_rights_gen.go#L298: return fmt.Errorf("can't encode chatBannedRights#9f120418 as nil")
tl_chat_banned_rights_gen.go#L307: return fmt.Errorf("can't encode chatBannedRights#9f120418 as nil")
tl_chat_banned_rights_gen.go#L346: return fmt.Errorf("unable to encode chatBannedRights#9f120418: field flags: %w", err)
tl_chat_banned_rights_gen.go#L552: return fmt.Errorf("can't decode chatBannedRights#9f120418 to nil")
tl_chat_banned_rights_gen.go#L555: return fmt.Errorf("unable to decode chatBannedRights#9f120418: %w", err)
tl_chat_banned_rights_gen.go#L563: return fmt.Errorf("can't decode chatBannedRights#9f120418 to nil")
tl_chat_banned_rights_gen.go#L567: return fmt.Errorf("unable to decode chatBannedRights#9f120418: field flags: %w", err)
tl_chat_banned_rights_gen.go#L585: return fmt.Errorf("unable to decode chatBannedRights#9f120418: field until_date: %w", err)
tl_chat_full_gen.go#L315: return fmt.Errorf("can't encode chatFull#8a1e2983 as nil")
tl_chat_full_gen.go#L324: return fmt.Errorf("can't encode chatFull#8a1e2983 as nil")
tl_chat_full_gen.go#L357: return fmt.Errorf("unable to encode chatFull#8a1e2983: field flags: %w", err)
tl_chat_full_gen.go#L362: return fmt.Errorf("unable to encode chatFull#8a1e2983: field participants is nil")
tl_chat_full_gen.go#L365: return fmt.Errorf("unable to encode chatFull#8a1e2983: field participants: %w", err)
tl_chat_full_gen.go#L369: return fmt.Errorf("unable to encode chatFull#8a1e2983: field chat_photo is nil")
tl_chat_full_gen.go#L372: return fmt.Errorf("unable to encode chatFull#8a1e2983: field chat_photo: %w", err)
tl_chat_full_gen.go#L376: return fmt.Errorf("unable to encode chatFull#8a1e2983: field notify_settings: %w", err)
tl_chat_full_gen.go#L380: return fmt.Errorf("unable to encode chatFull#8a1e2983: field exported_invite: %w", err)
tl_chat_full_gen.go#L387: return fmt.Errorf("unable to encode chatFull#8a1e2983: field bot_info element with index %d: %w", idx, err)
tl_chat_full_gen.go#L399: return fmt.Errorf("unable to encode chatFull#8a1e2983: field call: %w", err)
tl_chat_full_gen.go#L407: return fmt.Errorf("unable to encode chatFull#8a1e2983: field groupcall_default_join_as is nil")
tl_chat_full_gen.go#L410: return fmt.Errorf("unable to encode chatFull#8a1e2983: field groupcall_default_join_as: %w", err)
tl_chat_full_gen.go#L591: return fmt.Errorf("can't decode chatFull#8a1e2983 to nil")
tl_chat_full_gen.go#L594: return fmt.Errorf("unable to decode chatFull#8a1e2983: %w", err)
tl_chat_full_gen.go#L602: return fmt.Errorf("can't decode chatFull#8a1e2983 to nil")
tl_chat_full_gen.go#L606: return fmt.Errorf("unable to decode chatFull#8a1e2983: field flags: %w", err)
tl_chat_full_gen.go#L614: return fmt.Errorf("unable to decode chatFull#8a1e2983: field id: %w", err)
tl_chat_full_gen.go#L621: return fmt.Errorf("unable to decode chatFull#8a1e2983: field about: %w", err)
tl_chat_full_gen.go#L628: return fmt.Errorf("unable to decode chatFull#8a1e2983: field participants: %w", err)
tl_chat_full_gen.go#L635: return fmt.Errorf("unable to decode chatFull#8a1e2983: field chat_photo: %w", err)
tl_chat_full_gen.go#L641: return fmt.Errorf("unable to decode chatFull#8a1e2983: field notify_settings: %w", err)
tl_chat_full_gen.go#L646: return fmt.Errorf("unable to decode chatFull#8a1e2983: field exported_invite: %w", err)
tl_chat_full_gen.go#L652: return fmt.Errorf("unable to decode chatFull#8a1e2983: field bot_info: %w", err)
tl_chat_full_gen.go#L657: return fmt.Errorf("unable to decode chatFull#8a1e2983: field bot_info: %w", err)
tl_chat_full_gen.go#L665: return fmt.Errorf("unable to decode chatFull#8a1e2983: field pinned_msg_id: %w", err)
tl_chat_full_gen.go#L672: return fmt.Errorf("unable to decode chatFull#8a1e2983: field folder_id: %w", err)
tl_chat_full_gen.go#L678: return fmt.Errorf("unable to decode chatFull#8a1e2983: field call: %w", err)
tl_chat_full_gen.go#L684: return fmt.Errorf("unable to decode chatFull#8a1e2983: field ttl_period: %w", err)
tl_chat_full_gen.go#L691: return fmt.Errorf("unable to decode chatFull#8a1e2983: field groupcall_default_join_as: %w", err)
tl_chat_full_gen.go#L1372: return fmt.Errorf("can't encode channelFull#548c3f93 as nil")
tl_chat_full_gen.go#L1381: return fmt.Errorf("can't encode channelFull#548c3f93 as nil")
tl_chat_full_gen.go#L1471: return fmt.Errorf("unable to encode channelFull#548c3f93: field flags: %w", err)
tl_chat_full_gen.go#L1494: return fmt.Errorf("unable to encode channelFull#548c3f93: field chat_photo is nil")
tl_chat_full_gen.go#L1497: return fmt.Errorf("unable to encode channelFull#548c3f93: field chat_photo: %w", err)
tl_chat_full_gen.go#L1500: return fmt.Errorf("unable to encode channelFull#548c3f93: field notify_settings: %w", err)
tl_chat_full_gen.go#L1504: return fmt.Errorf("unable to encode channelFull#548c3f93: field exported_invite: %w", err)
tl_chat_full_gen.go#L1510: return fmt.Errorf("unable to encode channelFull#548c3f93: field bot_info element with index %d: %w", idx, err)
tl_chat_full_gen.go#L1524: return fmt.Errorf("unable to encode channelFull#548c3f93: field stickerset: %w", err)
tl_chat_full_gen.go#L1538: return fmt.Errorf("unable to encode channelFull#548c3f93: field location is nil")
tl_chat_full_gen.go#L1541: return fmt.Errorf("unable to encode channelFull#548c3f93: field location: %w", err)
tl_chat_full_gen.go#L1556: return fmt.Errorf("unable to encode channelFull#548c3f93: field call: %w", err)
tl_chat_full_gen.go#L1570: return fmt.Errorf("unable to encode channelFull#548c3f93: field groupcall_default_join_as is nil")
tl_chat_full_gen.go#L1573: return fmt.Errorf("unable to encode channelFull#548c3f93: field groupcall_default_join_as: %w", err)
tl_chat_full_gen.go#L2070: return fmt.Errorf("can't decode channelFull#548c3f93 to nil")
tl_chat_full_gen.go#L2073: return fmt.Errorf("unable to decode channelFull#548c3f93: %w", err)
tl_chat_full_gen.go#L2081: return fmt.Errorf("can't decode channelFull#548c3f93 to nil")
tl_chat_full_gen.go#L2085: return fmt.Errorf("unable to decode channelFull#548c3f93: field flags: %w", err)
tl_chat_full_gen.go#L2099: return fmt.Errorf("unable to decode channelFull#548c3f93: field id: %w", err)
tl_chat_full_gen.go#L2106: return fmt.Errorf("unable to decode channelFull#548c3f93: field about: %w", err)
tl_chat_full_gen.go#L2113: return fmt.Errorf("unable to decode channelFull#548c3f93: field participants_count: %w", err)
tl_chat_full_gen.go#L2120: return fmt.Errorf("unable to decode channelFull#548c3f93: field admins_count: %w", err)
tl_chat_full_gen.go#L2127: return fmt.Errorf("unable to decode channelFull#548c3f93: field kicked_count: %w", err)
tl_chat_full_gen.go#L2134: return fmt.Errorf("unable to decode channelFull#548c3f93: field banned_count: %w", err)
tl_chat_full_gen.go#L2141: return fmt.Errorf("unable to decode channelFull#548c3f93: field online_count: %w", err)
tl_chat_full_gen.go#L2148: return fmt.Errorf("unable to decode channelFull#548c3f93: field read_inbox_max_id: %w", err)
tl_chat_full_gen.go#L2155: return fmt.Errorf("unable to decode channelFull#548c3f93: field read_outbox_max_id: %w", err)
tl_chat_full_gen.go#L2162: return fmt.Errorf("unable to decode channelFull#548c3f93: field unread_count: %w", err)
tl_chat_full_gen.go#L2169: return fmt.Errorf("unable to decode channelFull#548c3f93: field chat_photo: %w", err)
tl_chat_full_gen.go#L2175: return fmt.Errorf("unable to decode channelFull#548c3f93: field notify_settings: %w", err)
tl_chat_full_gen.go#L2180: return fmt.Errorf("unable to decode channelFull#548c3f93: field exported_invite: %w", err)
tl_chat_full_gen.go#L2186: return fmt.Errorf("unable to decode channelFull#548c3f93: field bot_info: %w", err)
tl_chat_full_gen.go#L2191: return fmt.Errorf("unable to decode channelFull#548c3f93: field bot_info: %w", err)
tl_chat_full_gen.go#L2199: return fmt.Errorf("unable to decode channelFull#548c3f93: field migrated_from_chat_id: %w", err)
tl_chat_full_gen.go#L2206: return fmt.Errorf("unable to decode channelFull#548c3f93: field migrated_from_max_id: %w", err)
tl_chat_full_gen.go#L2213: return fmt.Errorf("unable to decode channelFull#548c3f93: field pinned_msg_id: %w", err)
tl_chat_full_gen.go#L2219: return fmt.Errorf("unable to decode channelFull#548c3f93: field stickerset: %w", err)
tl_chat_full_gen.go#L2225: return fmt.Errorf("unable to decode channelFull#548c3f93: field available_min_id: %w", err)
tl_chat_full_gen.go#L2232: return fmt.Errorf("unable to decode channelFull#548c3f93: field folder_id: %w", err)
tl_chat_full_gen.go#L2239: return fmt.Errorf("unable to decode channelFull#548c3f93: field linked_chat_id: %w", err)
tl_chat_full_gen.go#L2246: return fmt.Errorf("unable to decode channelFull#548c3f93: field location: %w", err)
tl_chat_full_gen.go#L2253: return fmt.Errorf("unable to decode channelFull#548c3f93: field slowmode_seconds: %w", err)
tl_chat_full_gen.go#L2260: return fmt.Errorf("unable to decode channelFull#548c3f93: field slowmode_next_send_date: %w", err)
tl_chat_full_gen.go#L2267: return fmt.Errorf("unable to decode channelFull#548c3f93: field stats_dc: %w", err)
tl_chat_full_gen.go#L2274: return fmt.Errorf("unable to decode channelFull#548c3f93: field pts: %w", err)
tl_chat_full_gen.go#L2280: return fmt.Errorf("unable to decode channelFull#548c3f93: field call: %w", err)
tl_chat_full_gen.go#L2286: return fmt.Errorf("unable to decode channelFull#548c3f93: field ttl_period: %w", err)
tl_chat_full_gen.go#L2293: return fmt.Errorf("unable to decode channelFull#548c3f93: field pending_suggestions: %w", err)
tl_chat_full_gen.go#L2298: return fmt.Errorf("unable to decode channelFull#548c3f93: field pending_suggestions: %w", err)
tl_chat_full_gen.go#L2306: return fmt.Errorf("unable to decode channelFull#548c3f93: field groupcall_default_join_as: %w", err)
tl_chat_full_gen.go#L2412: return nil, fmt.Errorf("unable to decode ChatFullClass: %w", err)
tl_chat_full_gen.go#L2419: return nil, fmt.Errorf("unable to decode ChatFullClass: %w", err)
tl_chat_full_gen.go#L2423: return nil, fmt.Errorf("unable to decode ChatFullClass: %w", bin.NewUnexpectedID(id))
tl_chat_full_gen.go#L2435: return fmt.Errorf("unable to decode ChatFullBox to nil")
tl_chat_full_gen.go#L2439: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_chat_full_gen.go#L2448: return fmt.Errorf("unable to encode ChatFullClass as nil")
tl_chat_gen.go#L105: return fmt.Errorf("can't encode chatEmpty#9ba2d800 as nil")
tl_chat_gen.go#L114: return fmt.Errorf("can't encode chatEmpty#9ba2d800 as nil")
tl_chat_gen.go#L128: return fmt.Errorf("can't decode chatEmpty#9ba2d800 to nil")
tl_chat_gen.go#L131: return fmt.Errorf("unable to decode chatEmpty#9ba2d800: %w", err)
tl_chat_gen.go#L139: return fmt.Errorf("can't decode chatEmpty#9ba2d800 to nil")
tl_chat_gen.go#L144: return fmt.Errorf("unable to decode chatEmpty#9ba2d800: field id: %w", err)
tl_chat_gen.go#L435: return fmt.Errorf("can't encode chat#3bda1bde as nil")
tl_chat_gen.go#L444: return fmt.Errorf("can't encode chat#3bda1bde as nil")
tl_chat_gen.go#L474: return fmt.Errorf("unable to encode chat#3bda1bde: field flags: %w", err)
tl_chat_gen.go#L479: return fmt.Errorf("unable to encode chat#3bda1bde: field photo is nil")
tl_chat_gen.go#L482: return fmt.Errorf("unable to encode chat#3bda1bde: field photo: %w", err)
tl_chat_gen.go#L489: return fmt.Errorf("unable to encode chat#3bda1bde: field migrated_to is nil")
tl_chat_gen.go#L492: return fmt.Errorf("unable to encode chat#3bda1bde: field migrated_to: %w", err)
tl_chat_gen.go#L497: return fmt.Errorf("unable to encode chat#3bda1bde: field admin_rights: %w", err)
tl_chat_gen.go#L502: return fmt.Errorf("unable to encode chat#3bda1bde: field default_banned_rights: %w", err)
tl_chat_gen.go#L682: return fmt.Errorf("can't decode chat#3bda1bde to nil")
tl_chat_gen.go#L685: return fmt.Errorf("unable to decode chat#3bda1bde: %w", err)
tl_chat_gen.go#L693: return fmt.Errorf("can't decode chat#3bda1bde to nil")
tl_chat_gen.go#L697: return fmt.Errorf("unable to decode chat#3bda1bde: field flags: %w", err)
tl_chat_gen.go#L709: return fmt.Errorf("unable to decode chat#3bda1bde: field id: %w", err)
tl_chat_gen.go#L716: return fmt.Errorf("unable to decode chat#3bda1bde: field title: %w", err)
tl_chat_gen.go#L723: return fmt.Errorf("unable to decode chat#3bda1bde: field photo: %w", err)
tl_chat_gen.go#L730: return fmt.Errorf("unable to decode chat#3bda1bde: field participants_count: %w", err)
tl_chat_gen.go#L737: return fmt.Errorf("unable to decode chat#3bda1bde: field date: %w", err)
tl_chat_gen.go#L744: return fmt.Errorf("unable to decode chat#3bda1bde: field version: %w", err)
tl_chat_gen.go#L751: return fmt.Errorf("unable to decode chat#3bda1bde: field migrated_to: %w", err)
tl_chat_gen.go#L757: return fmt.Errorf("unable to decode chat#3bda1bde: field admin_rights: %w", err)
tl_chat_gen.go#L762: return fmt.Errorf("unable to decode chat#3bda1bde: field default_banned_rights: %w", err)
tl_chat_gen.go#L866: return fmt.Errorf("can't encode chatForbidden#7328bdb as nil")
tl_chat_gen.go#L875: return fmt.Errorf("can't encode chatForbidden#7328bdb as nil")
tl_chat_gen.go#L895: return fmt.Errorf("can't decode chatForbidden#7328bdb to nil")
tl_chat_gen.go#L898: return fmt.Errorf("unable to decode chatForbidden#7328bdb: %w", err)
tl_chat_gen.go#L906: return fmt.Errorf("can't decode chatForbidden#7328bdb to nil")
tl_chat_gen.go#L911: return fmt.Errorf("unable to decode chatForbidden#7328bdb: field id: %w", err)
tl_chat_gen.go#L918: return fmt.Errorf("unable to decode chatForbidden#7328bdb: field title: %w", err)
tl_chat_gen.go#L1387: return fmt.Errorf("can't encode channel#d31a961e as nil")
tl_chat_gen.go#L1396: return fmt.Errorf("can't encode channel#d31a961e as nil")
tl_chat_gen.go#L1468: return fmt.Errorf("unable to encode channel#d31a961e: field flags: %w", err)
tl_chat_gen.go#L1479: return fmt.Errorf("unable to encode channel#d31a961e: field photo is nil")
tl_chat_gen.go#L1482: return fmt.Errorf("unable to encode channel#d31a961e: field photo: %w", err)
tl_chat_gen.go#L1490: return fmt.Errorf("unable to encode channel#d31a961e: field restriction_reason element with index %d: %w", idx, err)
tl_chat_gen.go#L1496: return fmt.Errorf("unable to encode channel#d31a961e: field admin_rights: %w", err)
tl_chat_gen.go#L1501: return fmt.Errorf("unable to encode channel#d31a961e: field banned_rights: %w", err)
tl_chat_gen.go#L1506: return fmt.Errorf("unable to encode channel#d31a961e: field default_banned_rights: %w", err)
tl_chat_gen.go#L1904: return fmt.Errorf("can't decode channel#d31a961e to nil")
tl_chat_gen.go#L1907: return fmt.Errorf("unable to decode channel#d31a961e: %w", err)
tl_chat_gen.go#L1915: return fmt.Errorf("can't decode channel#d31a961e to nil")
tl_chat_gen.go#L1919: return fmt.Errorf("unable to decode channel#d31a961e: field flags: %w", err)
tl_chat_gen.go#L1941: return fmt.Errorf("unable to decode channel#d31a961e: field id: %w", err)
tl_chat_gen.go#L1948: return fmt.Errorf("unable to decode channel#d31a961e: field access_hash: %w", err)
tl_chat_gen.go#L1955: return fmt.Errorf("unable to decode channel#d31a961e: field title: %w", err)
tl_chat_gen.go#L1962: return fmt.Errorf("unable to decode channel#d31a961e: field username: %w", err)
tl_chat_gen.go#L1969: return fmt.Errorf("unable to decode channel#d31a961e: field photo: %w", err)
tl_chat_gen.go#L1976: return fmt.Errorf("unable to decode channel#d31a961e: field date: %w", err)
tl_chat_gen.go#L1983: return fmt.Errorf("unable to decode channel#d31a961e: field version: %w", err)
tl_chat_gen.go#L1990: return fmt.Errorf("unable to decode channel#d31a961e: field restriction_reason: %w", err)
tl_chat_gen.go#L1995: return fmt.Errorf("unable to decode channel#d31a961e: field restriction_reason: %w", err)
tl_chat_gen.go#L2002: return fmt.Errorf("unable to decode channel#d31a961e: field admin_rights: %w", err)
tl_chat_gen.go#L2007: return fmt.Errorf("unable to decode channel#d31a961e: field banned_rights: %w", err)
tl_chat_gen.go#L2012: return fmt.Errorf("unable to decode channel#d31a961e: field default_banned_rights: %w", err)
tl_chat_gen.go#L2018: return fmt.Errorf("unable to decode channel#d31a961e: field participants_count: %w", err)
tl_chat_gen.go#L2183: return fmt.Errorf("can't encode channelForbidden#289da732 as nil")
tl_chat_gen.go#L2192: return fmt.Errorf("can't encode channelForbidden#289da732 as nil")
tl_chat_gen.go#L2204: return fmt.Errorf("unable to encode channelForbidden#289da732: field flags: %w", err)
tl_chat_gen.go#L2280: return fmt.Errorf("can't decode channelForbidden#289da732 to nil")
tl_chat_gen.go#L2283: return fmt.Errorf("unable to decode channelForbidden#289da732: %w", err)
tl_chat_gen.go#L2291: return fmt.Errorf("can't decode channelForbidden#289da732 to nil")
tl_chat_gen.go#L2295: return fmt.Errorf("unable to decode channelForbidden#289da732: field flags: %w", err)
tl_chat_gen.go#L2303: return fmt.Errorf("unable to decode channelForbidden#289da732: field id: %w", err)
tl_chat_gen.go#L2310: return fmt.Errorf("unable to decode channelForbidden#289da732: field access_hash: %w", err)
tl_chat_gen.go#L2317: return fmt.Errorf("unable to decode channelForbidden#289da732: field title: %w", err)
tl_chat_gen.go#L2324: return fmt.Errorf("unable to decode channelForbidden#289da732: field until_date: %w", err)
tl_chat_gen.go#L2629: return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
tl_chat_gen.go#L2636: return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
tl_chat_gen.go#L2643: return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
tl_chat_gen.go#L2650: return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
tl_chat_gen.go#L2657: return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
tl_chat_gen.go#L2661: return nil, fmt.Errorf("unable to decode ChatClass: %w", bin.NewUnexpectedID(id))
tl_chat_gen.go#L2673: return fmt.Errorf("unable to decode ChatBox to nil")
tl_chat_gen.go#L2677: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_chat_gen.go#L2686: return fmt.Errorf("unable to encode ChatClass as nil")
tl_chat_invite_exported_gen.go#L224: return fmt.Errorf("can't encode chatInviteExported#6e24fc9d as nil")
tl_chat_invite_exported_gen.go#L233: return fmt.Errorf("can't encode chatInviteExported#6e24fc9d as nil")
tl_chat_invite_exported_gen.go#L254: return fmt.Errorf("unable to encode chatInviteExported#6e24fc9d: field flags: %w", err)
tl_chat_invite_exported_gen.go#L384: return fmt.Errorf("can't decode chatInviteExported#6e24fc9d to nil")
tl_chat_invite_exported_gen.go#L387: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: %w", err)
tl_chat_invite_exported_gen.go#L395: return fmt.Errorf("can't decode chatInviteExported#6e24fc9d to nil")
tl_chat_invite_exported_gen.go#L399: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: field flags: %w", err)
tl_chat_invite_exported_gen.go#L407: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: field link: %w", err)
tl_chat_invite_exported_gen.go#L414: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: field admin_id: %w", err)
tl_chat_invite_exported_gen.go#L421: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: field date: %w", err)
tl_chat_invite_exported_gen.go#L428: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: field start_date: %w", err)
tl_chat_invite_exported_gen.go#L435: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: field expire_date: %w", err)
tl_chat_invite_exported_gen.go#L442: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: field usage_limit: %w", err)
tl_chat_invite_exported_gen.go#L449: return fmt.Errorf("unable to decode chatInviteExported#6e24fc9d: field usage: %w", err)
tl_chat_invite_gen.go#L105: return fmt.Errorf("can't encode chatInviteAlready#5a686d7c as nil")
tl_chat_invite_gen.go#L114: return fmt.Errorf("can't encode chatInviteAlready#5a686d7c as nil")
tl_chat_invite_gen.go#L117: return fmt.Errorf("unable to encode chatInviteAlready#5a686d7c: field chat is nil")
tl_chat_invite_gen.go#L120: return fmt.Errorf("unable to encode chatInviteAlready#5a686d7c: field chat: %w", err)
tl_chat_invite_gen.go#L133: return fmt.Errorf("can't decode chatInviteAlready#5a686d7c to nil")
tl_chat_invite_gen.go#L136: return fmt.Errorf("unable to decode chatInviteAlready#5a686d7c: %w", err)
tl_chat_invite_gen.go#L144: return fmt.Errorf("can't decode chatInviteAlready#5a686d7c to nil")
tl_chat_invite_gen.go#L149: return fmt.Errorf("unable to decode chatInviteAlready#5a686d7c: field chat: %w", err)
tl_chat_invite_gen.go#L350: return fmt.Errorf("can't encode chatInvite#dfc2f58e as nil")
tl_chat_invite_gen.go#L359: return fmt.Errorf("can't encode chatInvite#dfc2f58e as nil")
tl_chat_invite_gen.go#L377: return fmt.Errorf("unable to encode chatInvite#dfc2f58e: field flags: %w", err)
tl_chat_invite_gen.go#L381: return fmt.Errorf("unable to encode chatInvite#dfc2f58e: field photo is nil")
tl_chat_invite_gen.go#L384: return fmt.Errorf("unable to encode chatInvite#dfc2f58e: field photo: %w", err)
tl_chat_invite_gen.go#L391: return fmt.Errorf("unable to encode chatInvite#dfc2f58e: field participants element with index %d is nil", idx)
tl_chat_invite_gen.go#L394: return fmt.Errorf("unable to encode chatInvite#dfc2f58e: field participants element with index %d: %w", idx, err)
tl_chat_invite_gen.go#L506: return fmt.Errorf("can't decode chatInvite#dfc2f58e to nil")
tl_chat_invite_gen.go#L509: return fmt.Errorf("unable to decode chatInvite#dfc2f58e: %w", err)
tl_chat_invite_gen.go#L517: return fmt.Errorf("can't decode chatInvite#dfc2f58e to nil")
tl_chat_invite_gen.go#L521: return fmt.Errorf("unable to decode chatInvite#dfc2f58e: field flags: %w", err)
tl_chat_invite_gen.go#L531: return fmt.Errorf("unable to decode chatInvite#dfc2f58e: field title: %w", err)
tl_chat_invite_gen.go#L538: return fmt.Errorf("unable to decode chatInvite#dfc2f58e: field photo: %w", err)
tl_chat_invite_gen.go#L545: return fmt.Errorf("unable to decode chatInvite#dfc2f58e: field participants_count: %w", err)
tl_chat_invite_gen.go#L552: return fmt.Errorf("unable to decode chatInvite#dfc2f58e: field participants: %w", err)
tl_chat_invite_gen.go#L557: return fmt.Errorf("unable to decode chatInvite#dfc2f58e: field participants: %w", err)
tl_chat_invite_gen.go#L663: return fmt.Errorf("can't encode chatInvitePeek#61695cb0 as nil")
tl_chat_invite_gen.go#L672: return fmt.Errorf("can't encode chatInvitePeek#61695cb0 as nil")
tl_chat_invite_gen.go#L675: return fmt.Errorf("unable to encode chatInvitePeek#61695cb0: field chat is nil")
tl_chat_invite_gen.go#L678: return fmt.Errorf("unable to encode chatInvitePeek#61695cb0: field chat: %w", err)
tl_chat_invite_gen.go#L697: return fmt.Errorf("can't decode chatInvitePeek#61695cb0 to nil")
tl_chat_invite_gen.go#L700: return fmt.Errorf("unable to decode chatInvitePeek#61695cb0: %w", err)
tl_chat_invite_gen.go#L708: return fmt.Errorf("can't decode chatInvitePeek#61695cb0 to nil")
tl_chat_invite_gen.go#L713: return fmt.Errorf("unable to decode chatInvitePeek#61695cb0: field chat: %w", err)
tl_chat_invite_gen.go#L720: return fmt.Errorf("unable to decode chatInvitePeek#61695cb0: field expires: %w", err)
tl_chat_invite_gen.go#L785: return nil, fmt.Errorf("unable to decode ChatInviteClass: %w", err)
tl_chat_invite_gen.go#L792: return nil, fmt.Errorf("unable to decode ChatInviteClass: %w", err)
tl_chat_invite_gen.go#L799: return nil, fmt.Errorf("unable to decode ChatInviteClass: %w", err)
tl_chat_invite_gen.go#L803: return nil, fmt.Errorf("unable to decode ChatInviteClass: %w", bin.NewUnexpectedID(id))
tl_chat_invite_gen.go#L815: return fmt.Errorf("unable to decode ChatInviteBox to nil")
tl_chat_invite_gen.go#L819: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_chat_invite_gen.go#L828: return fmt.Errorf("unable to encode ChatInviteClass as nil")
tl_chat_invite_importer_gen.go#L115: return fmt.Errorf("can't encode chatInviteImporter#1e3e6680 as nil")
tl_chat_invite_importer_gen.go#L124: return fmt.Errorf("can't encode chatInviteImporter#1e3e6680 as nil")
tl_chat_invite_importer_gen.go#L144: return fmt.Errorf("can't decode chatInviteImporter#1e3e6680 to nil")
tl_chat_invite_importer_gen.go#L147: return fmt.Errorf("unable to decode chatInviteImporter#1e3e6680: %w", err)
tl_chat_invite_importer_gen.go#L155: return fmt.Errorf("can't decode chatInviteImporter#1e3e6680 to nil")
tl_chat_invite_importer_gen.go#L160: return fmt.Errorf("unable to decode chatInviteImporter#1e3e6680: field user_id: %w", err)
tl_chat_invite_importer_gen.go#L167: return fmt.Errorf("unable to decode chatInviteImporter#1e3e6680: field date: %w", err)
tl_chat_onlines_gen.go#L105: return fmt.Errorf("can't encode chatOnlines#f041e250 as nil")
tl_chat_onlines_gen.go#L114: return fmt.Errorf("can't encode chatOnlines#f041e250 as nil")
tl_chat_onlines_gen.go#L128: return fmt.Errorf("can't decode chatOnlines#f041e250 to nil")
tl_chat_onlines_gen.go#L131: return fmt.Errorf("unable to decode chatOnlines#f041e250: %w", err)
tl_chat_onlines_gen.go#L139: return fmt.Errorf("can't decode chatOnlines#f041e250 to nil")
tl_chat_onlines_gen.go#L144: return fmt.Errorf("unable to decode chatOnlines#f041e250: field onlines: %w", err)
tl_chat_participant_gen.go#L127: return fmt.Errorf("can't encode chatParticipant#c8d7493e as nil")
tl_chat_participant_gen.go#L136: return fmt.Errorf("can't encode chatParticipant#c8d7493e as nil")
tl_chat_participant_gen.go#L162: return fmt.Errorf("can't decode chatParticipant#c8d7493e to nil")
tl_chat_participant_gen.go#L165: return fmt.Errorf("unable to decode chatParticipant#c8d7493e: %w", err)
tl_chat_participant_gen.go#L173: return fmt.Errorf("can't decode chatParticipant#c8d7493e to nil")
tl_chat_participant_gen.go#L178: return fmt.Errorf("unable to decode chatParticipant#c8d7493e: field user_id: %w", err)
tl_chat_participant_gen.go#L185: return fmt.Errorf("unable to decode chatParticipant#c8d7493e: field inviter_id: %w", err)
tl_chat_participant_gen.go#L192: return fmt.Errorf("unable to decode chatParticipant#c8d7493e: field date: %w", err)
tl_chat_participant_gen.go#L285: return fmt.Errorf("can't encode chatParticipantCreator#da13538a as nil")
tl_chat_participant_gen.go#L294: return fmt.Errorf("can't encode chatParticipantCreator#da13538a as nil")
tl_chat_participant_gen.go#L308: return fmt.Errorf("can't decode chatParticipantCreator#da13538a to nil")
tl_chat_participant_gen.go#L311: return fmt.Errorf("unable to decode chatParticipantCreator#da13538a: %w", err)
tl_chat_participant_gen.go#L319: return fmt.Errorf("can't decode chatParticipantCreator#da13538a to nil")
tl_chat_participant_gen.go#L324: return fmt.Errorf("unable to decode chatParticipantCreator#da13538a: field user_id: %w", err)
tl_chat_participant_gen.go#L439: return fmt.Errorf("can't encode chatParticipantAdmin#e2d6e436 as nil")
tl_chat_participant_gen.go#L448: return fmt.Errorf("can't encode chatParticipantAdmin#e2d6e436 as nil")
tl_chat_participant_gen.go#L474: return fmt.Errorf("can't decode chatParticipantAdmin#e2d6e436 to nil")
tl_chat_participant_gen.go#L477: return fmt.Errorf("unable to decode chatParticipantAdmin#e2d6e436: %w", err)
tl_chat_participant_gen.go#L485: return fmt.Errorf("can't decode chatParticipantAdmin#e2d6e436 to nil")
tl_chat_participant_gen.go#L490: return fmt.Errorf("unable to decode chatParticipantAdmin#e2d6e436: field user_id: %w", err)
tl_chat_participant_gen.go#L497: return fmt.Errorf("unable to decode chatParticipantAdmin#e2d6e436: field inviter_id: %w", err)
tl_chat_participant_gen.go#L504: return fmt.Errorf("unable to decode chatParticipantAdmin#e2d6e436: field date: %w", err)
tl_chat_participant_gen.go#L572: return nil, fmt.Errorf("unable to decode ChatParticipantClass: %w", err)
tl_chat_participant_gen.go#L579: return nil, fmt.Errorf("unable to decode ChatParticipantClass: %w", err)
tl_chat_participant_gen.go#L586: return nil, fmt.Errorf("unable to decode ChatParticipantClass: %w", err)
tl_chat_participant_gen.go#L590: return nil, fmt.Errorf("unable to decode ChatParticipantClass: %w", bin.NewUnexpectedID(id))
tl_chat_participant_gen.go#L602: return fmt.Errorf("unable to decode ChatParticipantBox to nil")
tl_chat_participant_gen.go#L606: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_chat_participant_gen.go#L615: return fmt.Errorf("unable to encode ChatParticipantClass as nil")
tl_chat_participants_gen.go#L130: return fmt.Errorf("can't encode chatParticipantsForbidden#fc900c2b as nil")
tl_chat_participants_gen.go#L139: return fmt.Errorf("can't encode chatParticipantsForbidden#fc900c2b as nil")
tl_chat_participants_gen.go#L145: return fmt.Errorf("unable to encode chatParticipantsForbidden#fc900c2b: field flags: %w", err)
tl_chat_participants_gen.go#L150: return fmt.Errorf("unable to encode chatParticipantsForbidden#fc900c2b: field self_participant is nil")
tl_chat_participants_gen.go#L153: return fmt.Errorf("unable to encode chatParticipantsForbidden#fc900c2b: field self_participant: %w", err)
tl_chat_participants_gen.go#L182: return fmt.Errorf("can't decode chatParticipantsForbidden#fc900c2b to nil")
tl_chat_participants_gen.go#L185: return fmt.Errorf("unable to decode chatParticipantsForbidden#fc900c2b: %w", err)
tl_chat_participants_gen.go#L193: return fmt.Errorf("can't decode chatParticipantsForbidden#fc900c2b to nil")
tl_chat_participants_gen.go#L197: return fmt.Errorf("unable to decode chatParticipantsForbidden#fc900c2b: field flags: %w", err)
tl_chat_participants_gen.go#L203: return fmt.Errorf("unable to decode chatParticipantsForbidden#fc900c2b: field chat_id: %w", err)
tl_chat_participants_gen.go#L210: return fmt.Errorf("unable to decode chatParticipantsForbidden#fc900c2b: field self_participant: %w", err)
tl_chat_participants_gen.go#L325: return fmt.Errorf("can't encode chatParticipants#3f460fed as nil")
tl_chat_participants_gen.go#L334: return fmt.Errorf("can't encode chatParticipants#3f460fed as nil")
tl_chat_participants_gen.go#L340: return fmt.Errorf("unable to encode chatParticipants#3f460fed: field participants element with index %d is nil", idx)
tl_chat_participants_gen.go#L343: return fmt.Errorf("unable to encode chatParticipants#3f460fed: field participants element with index %d: %w", idx, err)
tl_chat_participants_gen.go#L373: return fmt.Errorf("can't decode chatParticipants#3f460fed to nil")
tl_chat_participants_gen.go#L376: return fmt.Errorf("unable to decode chatParticipants#3f460fed: %w", err)
tl_chat_participants_gen.go#L384: return fmt.Errorf("can't decode chatParticipants#3f460fed to nil")
tl_chat_participants_gen.go#L389: return fmt.Errorf("unable to decode chatParticipants#3f460fed: field chat_id: %w", err)
tl_chat_participants_gen.go#L396: return fmt.Errorf("unable to decode chatParticipants#3f460fed: field participants: %w", err)
tl_chat_participants_gen.go#L401: return fmt.Errorf("unable to decode chatParticipants#3f460fed: field participants: %w", err)
tl_chat_participants_gen.go#L409: return fmt.Errorf("unable to decode chatParticipants#3f460fed: field version: %w", err)
tl_chat_participants_gen.go#L489: return nil, fmt.Errorf("unable to decode ChatParticipantsClass: %w", err)
tl_chat_participants_gen.go#L496: return nil, fmt.Errorf("unable to decode ChatParticipantsClass: %w", err)
tl_chat_participants_gen.go#L500: return nil, fmt.Errorf("unable to decode ChatParticipantsClass: %w", bin.NewUnexpectedID(id))
tl_chat_participants_gen.go#L512: return fmt.Errorf("unable to decode ChatParticipantsBox to nil")
tl_chat_participants_gen.go#L516: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_chat_participants_gen.go#L525: return fmt.Errorf("unable to encode ChatParticipantsClass as nil")
tl_chat_photo_gen.go#L88: return fmt.Errorf("can't encode chatPhotoEmpty#37c1011c as nil")
tl_chat_photo_gen.go#L97: return fmt.Errorf("can't encode chatPhotoEmpty#37c1011c as nil")
tl_chat_photo_gen.go#L105: return fmt.Errorf("can't decode chatPhotoEmpty#37c1011c to nil")
tl_chat_photo_gen.go#L108: return fmt.Errorf("unable to decode chatPhotoEmpty#37c1011c: %w", err)
tl_chat_photo_gen.go#L116: return fmt.Errorf("can't decode chatPhotoEmpty#37c1011c to nil")
tl_chat_photo_gen.go#L255: return fmt.Errorf("can't encode chatPhoto#1c6e1c11 as nil")
tl_chat_photo_gen.go#L264: return fmt.Errorf("can't encode chatPhoto#1c6e1c11 as nil")
tl_chat_photo_gen.go#L273: return fmt.Errorf("unable to encode chatPhoto#1c6e1c11: field flags: %w", err)
tl_chat_photo_gen.go#L327: return fmt.Errorf("can't decode chatPhoto#1c6e1c11 to nil")
tl_chat_photo_gen.go#L330: return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: %w", err)
tl_chat_photo_gen.go#L338: return fmt.Errorf("can't decode chatPhoto#1c6e1c11 to nil")
tl_chat_photo_gen.go#L342: return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: field flags: %w", err)
tl_chat_photo_gen.go#L349: return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: field photo_id: %w", err)
tl_chat_photo_gen.go#L356: return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: field stripped_thumb: %w", err)
tl_chat_photo_gen.go#L363: return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: field dc_id: %w", err)
tl_chat_photo_gen.go#L440: return nil, fmt.Errorf("unable to decode ChatPhotoClass: %w", err)
tl_chat_photo_gen.go#L447: return nil, fmt.Errorf("unable to decode ChatPhotoClass: %w", err)
tl_chat_photo_gen.go#L451: return nil, fmt.Errorf("unable to decode ChatPhotoClass: %w", bin.NewUnexpectedID(id))
tl_chat_photo_gen.go#L463: return fmt.Errorf("unable to decode ChatPhotoBox to nil")
tl_chat_photo_gen.go#L467: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_chat_photo_gen.go#L476: return fmt.Errorf("unable to encode ChatPhotoClass as nil")
tl_code_settings_gen.go#L151: return fmt.Errorf("can't encode codeSettings#debebe83 as nil")
tl_code_settings_gen.go#L160: return fmt.Errorf("can't encode codeSettings#debebe83 as nil")
tl_code_settings_gen.go#L172: return fmt.Errorf("unable to encode codeSettings#debebe83: field flags: %w", err)
tl_code_settings_gen.go#L228: return fmt.Errorf("can't decode codeSettings#debebe83 to nil")
tl_code_settings_gen.go#L231: return fmt.Errorf("unable to decode codeSettings#debebe83: %w", err)
tl_code_settings_gen.go#L239: return fmt.Errorf("can't decode codeSettings#debebe83 to nil")
tl_code_settings_gen.go#L243: return fmt.Errorf("unable to decode codeSettings#debebe83: field flags: %w", err)
tl_config_gen.go#L768: return fmt.Errorf("can't encode config#330b4067 as nil")
tl_config_gen.go#L777: return fmt.Errorf("can't encode config#330b4067 as nil")
tl_config_gen.go#L828: return fmt.Errorf("unable to encode config#330b4067: field flags: %w", err)
tl_config_gen.go#L837: return fmt.Errorf("unable to encode config#330b4067: field dc_options element with index %d: %w", idx, err)
tl_config_gen.go#L1325: return fmt.Errorf("can't decode config#330b4067 to nil")
tl_config_gen.go#L1328: return fmt.Errorf("unable to decode config#330b4067: %w", err)
tl_config_gen.go#L1336: return fmt.Errorf("can't decode config#330b4067 to nil")
tl_config_gen.go#L1340: return fmt.Errorf("unable to decode config#330b4067: field flags: %w", err)
tl_config_gen.go#L1353: return fmt.Errorf("unable to decode config#330b4067: field date: %w", err)
tl_config_gen.go#L1360: return fmt.Errorf("unable to decode config#330b4067: field expires: %w", err)
tl_config_gen.go#L1367: return fmt.Errorf("unable to decode config#330b4067: field test_mode: %w", err)
tl_config_gen.go#L1374: return fmt.Errorf("unable to decode config#330b4067: field this_dc: %w", err)
tl_config_gen.go#L1381: return fmt.Errorf("unable to decode config#330b4067: field dc_options: %w", err)
tl_config_gen.go#L1386: return fmt.Errorf("unable to decode config#330b4067: field dc_options: %w", err)
tl_config_gen.go#L1394: return fmt.Errorf("unable to decode config#330b4067: field dc_txt_domain_name: %w", err)
tl_config_gen.go#L1401: return fmt.Errorf("unable to decode config#330b4067: field chat_size_max: %w", err)
tl_config_gen.go#L1408: return fmt.Errorf("unable to decode config#330b4067: field megagroup_size_max: %w", err)
tl_config_gen.go#L1415: return fmt.Errorf("unable to decode config#330b4067: field forwarded_count_max: %w", err)
tl_config_gen.go#L1422: return fmt.Errorf("unable to decode config#330b4067: field online_update_period_ms: %w", err)
tl_config_gen.go#L1429: return fmt.Errorf("unable to decode config#330b4067: field offline_blur_timeout_ms: %w", err)
tl_config_gen.go#L1436: return fmt.Errorf("unable to decode config#330b4067: field offline_idle_timeout_ms: %w", err)
tl_config_gen.go#L1443: return fmt.Errorf("unable to decode config#330b4067: field online_cloud_timeout_ms: %w", err)
tl_config_gen.go#L1450: return fmt.Errorf("unable to decode config#330b4067: field notify_cloud_delay_ms: %w", err)
tl_config_gen.go#L1457: return fmt.Errorf("unable to decode config#330b4067: field notify_default_delay_ms: %w", err)
tl_config_gen.go#L1464: return fmt.Errorf("unable to decode config#330b4067: field push_chat_period_ms: %w", err)
tl_config_gen.go#L1471: return fmt.Errorf("unable to decode config#330b4067: field push_chat_limit: %w", err)
tl_config_gen.go#L1478: return fmt.Errorf("unable to decode config#330b4067: field saved_gifs_limit: %w", err)
tl_config_gen.go#L1485: return fmt.Errorf("unable to decode config#330b4067: field edit_time_limit: %w", err)
tl_config_gen.go#L1492: return fmt.Errorf("unable to decode config#330b4067: field revoke_time_limit: %w", err)
tl_config_gen.go#L1499: return fmt.Errorf("unable to decode config#330b4067: field revoke_pm_time_limit: %w", err)
tl_config_gen.go#L1506: return fmt.Errorf("unable to decode config#330b4067: field rating_e_decay: %w", err)
tl_config_gen.go#L1513: return fmt.Errorf("unable to decode config#330b4067: field stickers_recent_limit: %w", err)
tl_config_gen.go#L1520: return fmt.Errorf("unable to decode config#330b4067: field stickers_faved_limit: %w", err)
tl_config_gen.go#L1527: return fmt.Errorf("unable to decode config#330b4067: field channels_read_media_period: %w", err)
tl_config_gen.go#L1534: return fmt.Errorf("unable to decode config#330b4067: field tmp_sessions: %w", err)
tl_config_gen.go#L1541: return fmt.Errorf("unable to decode config#330b4067: field pinned_dialogs_count_max: %w", err)
tl_config_gen.go#L1548: return fmt.Errorf("unable to decode config#330b4067: field pinned_infolder_count_max: %w", err)
tl_config_gen.go#L1555: return fmt.Errorf("unable to decode config#330b4067: field call_receive_timeout_ms: %w", err)
tl_config_gen.go#L1562: return fmt.Errorf("unable to decode config#330b4067: field call_ring_timeout_ms: %w", err)
tl_config_gen.go#L1569: return fmt.Errorf("unable to decode config#330b4067: field call_connect_timeout_ms: %w", err)
tl_config_gen.go#L1576: return fmt.Errorf("unable to decode config#330b4067: field call_packet_timeout_ms: %w", err)
tl_config_gen.go#L1583: return fmt.Errorf("unable to decode config#330b4067: field me_url_prefix: %w", err)
tl_config_gen.go#L1590: return fmt.Errorf("unable to decode config#330b4067: field autoupdate_url_prefix: %w", err)
tl_config_gen.go#L1597: return fmt.Errorf("unable to decode config#330b4067: field gif_search_username: %w", err)
tl_config_gen.go#L1604: return fmt.Errorf("unable to decode config#330b4067: field venue_search_username: %w", err)
tl_config_gen.go#L1611: return fmt.Errorf("unable to decode config#330b4067: field img_search_username: %w", err)
tl_config_gen.go#L1618: return fmt.Errorf("unable to decode config#330b4067: field static_maps_provider: %w", err)
tl_config_gen.go#L1625: return fmt.Errorf("unable to decode config#330b4067: field caption_length_max: %w", err)
tl_config_gen.go#L1632: return fmt.Errorf("unable to decode config#330b4067: field message_length_max: %w", err)
tl_config_gen.go#L1639: return fmt.Errorf("unable to decode config#330b4067: field webfile_dc_id: %w", err)
tl_config_gen.go#L1646: return fmt.Errorf("unable to decode config#330b4067: field suggested_lang_code: %w", err)
tl_config_gen.go#L1653: return fmt.Errorf("unable to decode config#330b4067: field lang_pack_version: %w", err)
tl_config_gen.go#L1660: return fmt.Errorf("unable to decode config#330b4067: field base_lang_pack_version: %w", err)
tl_contact_gen.go#L116: return fmt.Errorf("can't encode contact#f911c994 as nil")
tl_contact_gen.go#L125: return fmt.Errorf("can't encode contact#f911c994 as nil")
tl_contact_gen.go#L145: return fmt.Errorf("can't decode contact#f911c994 to nil")
tl_contact_gen.go#L148: return fmt.Errorf("unable to decode contact#f911c994: %w", err)
tl_contact_gen.go#L156: return fmt.Errorf("can't decode contact#f911c994 to nil")
tl_contact_gen.go#L161: return fmt.Errorf("unable to decode contact#f911c994: field user_id: %w", err)
tl_contact_gen.go#L168: return fmt.Errorf("unable to decode contact#f911c994: field mutual: %w", err)
tl_contact_status_gen.go#L116: return fmt.Errorf("can't encode contactStatus#d3680c61 as nil")
tl_contact_status_gen.go#L125: return fmt.Errorf("can't encode contactStatus#d3680c61 as nil")
tl_contact_status_gen.go#L129: return fmt.Errorf("unable to encode contactStatus#d3680c61: field status is nil")
tl_contact_status_gen.go#L132: return fmt.Errorf("unable to encode contactStatus#d3680c61: field status: %w", err)
tl_contact_status_gen.go#L150: return fmt.Errorf("can't decode contactStatus#d3680c61 to nil")
tl_contact_status_gen.go#L153: return fmt.Errorf("unable to decode contactStatus#d3680c61: %w", err)
tl_contact_status_gen.go#L161: return fmt.Errorf("can't decode contactStatus#d3680c61 to nil")
tl_contact_status_gen.go#L166: return fmt.Errorf("unable to decode contactStatus#d3680c61: field user_id: %w", err)
tl_contact_status_gen.go#L173: return fmt.Errorf("unable to decode contactStatus#d3680c61: field status: %w", err)
tl_contact_status_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_contact_status_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_contact_status_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_contact_status_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_contact_status_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_contact_status_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_contact_status_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_contacts_accept_contact_gen.go#L109: return fmt.Errorf("can't encode contacts.acceptContact#f831a20f as nil")
tl_contacts_accept_contact_gen.go#L118: return fmt.Errorf("can't encode contacts.acceptContact#f831a20f as nil")
tl_contacts_accept_contact_gen.go#L121: return fmt.Errorf("unable to encode contacts.acceptContact#f831a20f: field id is nil")
tl_contacts_accept_contact_gen.go#L124: return fmt.Errorf("unable to encode contacts.acceptContact#f831a20f: field id: %w", err)
tl_contacts_accept_contact_gen.go#L137: return fmt.Errorf("can't decode contacts.acceptContact#f831a20f to nil")
tl_contacts_accept_contact_gen.go#L140: return fmt.Errorf("unable to decode contacts.acceptContact#f831a20f: %w", err)
tl_contacts_accept_contact_gen.go#L148: return fmt.Errorf("can't decode contacts.acceptContact#f831a20f to nil")
tl_contacts_accept_contact_gen.go#L153: return fmt.Errorf("unable to decode contacts.acceptContact#f831a20f: field id: %w", err)
tl_contacts_add_contact_gen.go#L163: return fmt.Errorf("can't encode contacts.addContact#e8f463d0 as nil")
tl_contacts_add_contact_gen.go#L172: return fmt.Errorf("can't encode contacts.addContact#e8f463d0 as nil")
tl_contacts_add_contact_gen.go#L178: return fmt.Errorf("unable to encode contacts.addContact#e8f463d0: field flags: %w", err)
tl_contacts_add_contact_gen.go#L181: return fmt.Errorf("unable to encode contacts.addContact#e8f463d0: field id is nil")
tl_contacts_add_contact_gen.go#L184: return fmt.Errorf("unable to encode contacts.addContact#e8f463d0: field id: %w", err)
tl_contacts_add_contact_gen.go#L231: return fmt.Errorf("can't decode contacts.addContact#e8f463d0 to nil")
tl_contacts_add_contact_gen.go#L234: return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: %w", err)
tl_contacts_add_contact_gen.go#L242: return fmt.Errorf("can't decode contacts.addContact#e8f463d0 to nil")
tl_contacts_add_contact_gen.go#L246: return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field flags: %w", err)
tl_contacts_add_contact_gen.go#L253: return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field id: %w", err)
tl_contacts_add_contact_gen.go#L260: return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field first_name: %w", err)
tl_contacts_add_contact_gen.go#L267: return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field last_name: %w", err)
tl_contacts_add_contact_gen.go#L274: return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field phone: %w", err)
tl_contacts_block_from_replies_gen.go#L155: return fmt.Errorf("can't encode contacts.blockFromReplies#29a8962c as nil")
tl_contacts_block_from_replies_gen.go#L164: return fmt.Errorf("can't encode contacts.blockFromReplies#29a8962c as nil")
tl_contacts_block_from_replies_gen.go#L176: return fmt.Errorf("unable to encode contacts.blockFromReplies#29a8962c: field flags: %w", err)
tl_contacts_block_from_replies_gen.go#L238: return fmt.Errorf("can't decode contacts.blockFromReplies#29a8962c to nil")
tl_contacts_block_from_replies_gen.go#L241: return fmt.Errorf("unable to decode contacts.blockFromReplies#29a8962c: %w", err)
tl_contacts_block_from_replies_gen.go#L249: return fmt.Errorf("can't decode contacts.blockFromReplies#29a8962c to nil")
tl_contacts_block_from_replies_gen.go#L253: return fmt.Errorf("unable to decode contacts.blockFromReplies#29a8962c: field flags: %w", err)
tl_contacts_block_from_replies_gen.go#L262: return fmt.Errorf("unable to decode contacts.blockFromReplies#29a8962c: field msg_id: %w", err)
tl_contacts_block_gen.go#L105: return fmt.Errorf("can't encode contacts.block#68cc1411 as nil")
tl_contacts_block_gen.go#L114: return fmt.Errorf("can't encode contacts.block#68cc1411 as nil")
tl_contacts_block_gen.go#L117: return fmt.Errorf("unable to encode contacts.block#68cc1411: field id is nil")
tl_contacts_block_gen.go#L120: return fmt.Errorf("unable to encode contacts.block#68cc1411: field id: %w", err)
tl_contacts_block_gen.go#L133: return fmt.Errorf("can't decode contacts.block#68cc1411 to nil")
tl_contacts_block_gen.go#L136: return fmt.Errorf("unable to decode contacts.block#68cc1411: %w", err)
tl_contacts_block_gen.go#L144: return fmt.Errorf("can't decode contacts.block#68cc1411 to nil")
tl_contacts_block_gen.go#L149: return fmt.Errorf("unable to decode contacts.block#68cc1411: field id: %w", err)
tl_contacts_blocked_gen.go#L127: return fmt.Errorf("can't encode contacts.blocked#ade1591 as nil")
tl_contacts_blocked_gen.go#L136: return fmt.Errorf("can't encode contacts.blocked#ade1591 as nil")
tl_contacts_blocked_gen.go#L141: return fmt.Errorf("unable to encode contacts.blocked#ade1591: field blocked element with index %d: %w", idx, err)
tl_contacts_blocked_gen.go#L147: return fmt.Errorf("unable to encode contacts.blocked#ade1591: field chats element with index %d is nil", idx)
tl_contacts_blocked_gen.go#L150: return fmt.Errorf("unable to encode contacts.blocked#ade1591: field chats element with index %d: %w", idx, err)
tl_contacts_blocked_gen.go#L156: return fmt.Errorf("unable to encode contacts.blocked#ade1591: field users element with index %d is nil", idx)
tl_contacts_blocked_gen.go#L159: return fmt.Errorf("unable to encode contacts.blocked#ade1591: field users element with index %d: %w", idx, err)
tl_contacts_blocked_gen.go#L193: return fmt.Errorf("can't decode contacts.blocked#ade1591 to nil")
tl_contacts_blocked_gen.go#L196: return fmt.Errorf("unable to decode contacts.blocked#ade1591: %w", err)
tl_contacts_blocked_gen.go#L204: return fmt.Errorf("can't decode contacts.blocked#ade1591 to nil")
tl_contacts_blocked_gen.go#L209: return fmt.Errorf("unable to decode contacts.blocked#ade1591: field blocked: %w", err)
tl_contacts_blocked_gen.go#L214: return fmt.Errorf("unable to decode contacts.blocked#ade1591: field blocked: %w", err)
tl_contacts_blocked_gen.go#L222: return fmt.Errorf("unable to decode contacts.blocked#ade1591: field chats: %w", err)
tl_contacts_blocked_gen.go#L227: return fmt.Errorf("unable to decode contacts.blocked#ade1591: field chats: %w", err)
tl_contacts_blocked_gen.go#L235: return fmt.Errorf("unable to decode contacts.blocked#ade1591: field users: %w", err)
tl_contacts_blocked_gen.go#L240: return fmt.Errorf("unable to decode contacts.blocked#ade1591: field users: %w", err)
tl_contacts_blocked_gen.go#L367: return fmt.Errorf("can't encode contacts.blockedSlice#e1664194 as nil")
tl_contacts_blocked_gen.go#L376: return fmt.Errorf("can't encode contacts.blockedSlice#e1664194 as nil")
tl_contacts_blocked_gen.go#L382: return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field blocked element with index %d: %w", idx, err)
tl_contacts_blocked_gen.go#L388: return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field chats element with index %d is nil", idx)
tl_contacts_blocked_gen.go#L391: return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field chats element with index %d: %w", idx, err)
tl_contacts_blocked_gen.go#L397: return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field users element with index %d is nil", idx)
tl_contacts_blocked_gen.go#L400: return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field users element with index %d: %w", idx, err)
tl_contacts_blocked_gen.go#L439: return fmt.Errorf("can't decode contacts.blockedSlice#e1664194 to nil")
tl_contacts_blocked_gen.go#L442: return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: %w", err)
tl_contacts_blocked_gen.go#L450: return fmt.Errorf("can't decode contacts.blockedSlice#e1664194 to nil")
tl_contacts_blocked_gen.go#L455: return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field count: %w", err)
tl_contacts_blocked_gen.go#L462: return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field blocked: %w", err)
tl_contacts_blocked_gen.go#L467: return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field blocked: %w", err)
tl_contacts_blocked_gen.go#L475: return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field chats: %w", err)
tl_contacts_blocked_gen.go#L480: return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field chats: %w", err)
tl_contacts_blocked_gen.go#L488: return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field users: %w", err)
tl_contacts_blocked_gen.go#L493: return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field users: %w", err)
tl_contacts_blocked_gen.go#L569: return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", err)
tl_contacts_blocked_gen.go#L576: return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", err)
tl_contacts_blocked_gen.go#L580: return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", bin.NewUnexpectedID(id))
tl_contacts_blocked_gen.go#L592: return fmt.Errorf("unable to decode ContactsBlockedBox to nil")
tl_contacts_blocked_gen.go#L596: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_contacts_blocked_gen.go#L605: return fmt.Errorf("unable to encode ContactsBlockedClass as nil")
tl_contacts_contacts_gen.go#L88: return fmt.Errorf("can't encode contacts.contactsNotModified#b74ba9d2 as nil")
tl_contacts_contacts_gen.go#L97: return fmt.Errorf("can't encode contacts.contactsNotModified#b74ba9d2 as nil")
tl_contacts_contacts_gen.go#L105: return fmt.Errorf("can't decode contacts.contactsNotModified#b74ba9d2 to nil")
tl_contacts_contacts_gen.go#L108: return fmt.Errorf("unable to decode contacts.contactsNotModified#b74ba9d2: %w", err)
tl_contacts_contacts_gen.go#L116: return fmt.Errorf("can't decode contacts.contactsNotModified#b74ba9d2 to nil")
tl_contacts_contacts_gen.go#L229: return fmt.Errorf("can't encode contacts.contacts#eae87e42 as nil")
tl_contacts_contacts_gen.go#L238: return fmt.Errorf("can't encode contacts.contacts#eae87e42 as nil")
tl_contacts_contacts_gen.go#L243: return fmt.Errorf("unable to encode contacts.contacts#eae87e42: field contacts element with index %d: %w", idx, err)
tl_contacts_contacts_gen.go#L250: return fmt.Errorf("unable to encode contacts.contacts#eae87e42: field users element with index %d is nil", idx)
tl_contacts_contacts_gen.go#L253: return fmt.Errorf("unable to encode contacts.contacts#eae87e42: field users element with index %d: %w", idx, err)
tl_contacts_contacts_gen.go#L282: return fmt.Errorf("can't decode contacts.contacts#eae87e42 to nil")
tl_contacts_contacts_gen.go#L285: return fmt.Errorf("unable to decode contacts.contacts#eae87e42: %w", err)
tl_contacts_contacts_gen.go#L293: return fmt.Errorf("can't decode contacts.contacts#eae87e42 to nil")
tl_contacts_contacts_gen.go#L298: return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field contacts: %w", err)
tl_contacts_contacts_gen.go#L303: return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field contacts: %w", err)
tl_contacts_contacts_gen.go#L311: return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field saved_count: %w", err)
tl_contacts_contacts_gen.go#L318: return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field users: %w", err)
tl_contacts_contacts_gen.go#L323: return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field users: %w", err)
tl_contacts_contacts_gen.go#L401: return nil, fmt.Errorf("unable to decode ContactsContactsClass: %w", err)
tl_contacts_contacts_gen.go#L408: return nil, fmt.Errorf("unable to decode ContactsContactsClass: %w", err)
tl_contacts_contacts_gen.go#L412: return nil, fmt.Errorf("unable to decode ContactsContactsClass: %w", bin.NewUnexpectedID(id))
tl_contacts_contacts_gen.go#L424: return fmt.Errorf("unable to decode ContactsContactsBox to nil")
tl_contacts_contacts_gen.go#L428: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_contacts_contacts_gen.go#L437: return fmt.Errorf("unable to encode ContactsContactsClass as nil")
tl_contacts_delete_by_phones_gen.go#L105: return fmt.Errorf("can't encode contacts.deleteByPhones#1013fd9e as nil")
tl_contacts_delete_by_phones_gen.go#L114: return fmt.Errorf("can't encode contacts.deleteByPhones#1013fd9e as nil")
tl_contacts_delete_by_phones_gen.go#L131: return fmt.Errorf("can't decode contacts.deleteByPhones#1013fd9e to nil")
tl_contacts_delete_by_phones_gen.go#L134: return fmt.Errorf("unable to decode contacts.deleteByPhones#1013fd9e: %w", err)
tl_contacts_delete_by_phones_gen.go#L142: return fmt.Errorf("can't decode contacts.deleteByPhones#1013fd9e to nil")
tl_contacts_delete_by_phones_gen.go#L147: return fmt.Errorf("unable to decode contacts.deleteByPhones#1013fd9e: field phones: %w", err)
tl_contacts_delete_by_phones_gen.go#L152: return fmt.Errorf("unable to decode contacts.deleteByPhones#1013fd9e: field phones: %w", err)
tl_contacts_delete_contacts_gen.go#L105: return fmt.Errorf("can't encode contacts.deleteContacts#96a0e00 as nil")
tl_contacts_delete_contacts_gen.go#L114: return fmt.Errorf("can't encode contacts.deleteContacts#96a0e00 as nil")
tl_contacts_delete_contacts_gen.go#L119: return fmt.Errorf("unable to encode contacts.deleteContacts#96a0e00: field id element with index %d is nil", idx)
tl_contacts_delete_contacts_gen.go#L122: return fmt.Errorf("unable to encode contacts.deleteContacts#96a0e00: field id element with index %d: %w", idx, err)
tl_contacts_delete_contacts_gen.go#L141: return fmt.Errorf("can't decode contacts.deleteContacts#96a0e00 to nil")
tl_contacts_delete_contacts_gen.go#L144: return fmt.Errorf("unable to decode contacts.deleteContacts#96a0e00: %w", err)
tl_contacts_delete_contacts_gen.go#L152: return fmt.Errorf("can't decode contacts.deleteContacts#96a0e00 to nil")
tl_contacts_delete_contacts_gen.go#L157: return fmt.Errorf("unable to decode contacts.deleteContacts#96a0e00: field id: %w", err)
tl_contacts_delete_contacts_gen.go#L162: return fmt.Errorf("unable to decode contacts.deleteContacts#96a0e00: field id: %w", err)
tl_contacts_found_gen.go#L138: return fmt.Errorf("can't encode contacts.found#b3134d9d as nil")
tl_contacts_found_gen.go#L147: return fmt.Errorf("can't encode contacts.found#b3134d9d as nil")
tl_contacts_found_gen.go#L152: return fmt.Errorf("unable to encode contacts.found#b3134d9d: field my_results element with index %d is nil", idx)
tl_contacts_found_gen.go#L155: return fmt.Errorf("unable to encode contacts.found#b3134d9d: field my_results element with index %d: %w", idx, err)
tl_contacts_found_gen.go#L161: return fmt.Errorf("unable to encode contacts.found#b3134d9d: field results element with index %d is nil", idx)
tl_contacts_found_gen.go#L164: return fmt.Errorf("unable to encode contacts.found#b3134d9d: field results element with index %d: %w", idx, err)
tl_contacts_found_gen.go#L170: return fmt.Errorf("unable to encode contacts.found#b3134d9d: field chats element with index %d is nil", idx)
tl_contacts_found_gen.go#L173: return fmt.Errorf("unable to encode contacts.found#b3134d9d: field chats element with index %d: %w", idx, err)
tl_contacts_found_gen.go#L179: return fmt.Errorf("unable to encode contacts.found#b3134d9d: field users element with index %d is nil", idx)
tl_contacts_found_gen.go#L182: return fmt.Errorf("unable to encode contacts.found#b3134d9d: field users element with index %d: %w", idx, err)
tl_contacts_found_gen.go#L231: return fmt.Errorf("can't decode contacts.found#b3134d9d to nil")
tl_contacts_found_gen.go#L234: return fmt.Errorf("unable to decode contacts.found#b3134d9d: %w", err)
tl_contacts_found_gen.go#L242: return fmt.Errorf("can't decode contacts.found#b3134d9d to nil")
tl_contacts_found_gen.go#L247: return fmt.Errorf("unable to decode contacts.found#b3134d9d: field my_results: %w", err)
tl_contacts_found_gen.go#L252: return fmt.Errorf("unable to decode contacts.found#b3134d9d: field my_results: %w", err)
tl_contacts_found_gen.go#L260: return fmt.Errorf("unable to decode contacts.found#b3134d9d: field results: %w", err)
tl_contacts_found_gen.go#L265: return fmt.Errorf("unable to decode contacts.found#b3134d9d: field results: %w", err)
tl_contacts_found_gen.go#L273: return fmt.Errorf("unable to decode contacts.found#b3134d9d: field chats: %w", err)
tl_contacts_found_gen.go#L278: return fmt.Errorf("unable to decode contacts.found#b3134d9d: field chats: %w", err)
tl_contacts_found_gen.go#L286: return fmt.Errorf("unable to decode contacts.found#b3134d9d: field users: %w", err)
tl_contacts_found_gen.go#L291: return fmt.Errorf("unable to decode contacts.found#b3134d9d: field users: %w", err)
tl_contacts_get_blocked_gen.go#L116: return fmt.Errorf("can't encode contacts.getBlocked#f57c350f as nil")
tl_contacts_get_blocked_gen.go#L125: return fmt.Errorf("can't encode contacts.getBlocked#f57c350f as nil")
tl_contacts_get_blocked_gen.go#L145: return fmt.Errorf("can't decode contacts.getBlocked#f57c350f to nil")
tl_contacts_get_blocked_gen.go#L148: return fmt.Errorf("unable to decode contacts.getBlocked#f57c350f: %w", err)
tl_contacts_get_blocked_gen.go#L156: return fmt.Errorf("can't decode contacts.getBlocked#f57c350f to nil")
tl_contacts_get_blocked_gen.go#L161: return fmt.Errorf("unable to decode contacts.getBlocked#f57c350f: field offset: %w", err)
tl_contacts_get_blocked_gen.go#L168: return fmt.Errorf("unable to decode contacts.getBlocked#f57c350f: field limit: %w", err)
tl_contacts_get_contact_ids_gen.go#L108: return fmt.Errorf("can't encode contacts.getContactIDs#2caa4a42 as nil")
tl_contacts_get_contact_ids_gen.go#L117: return fmt.Errorf("can't encode contacts.getContactIDs#2caa4a42 as nil")
tl_contacts_get_contact_ids_gen.go#L131: return fmt.Errorf("can't decode contacts.getContactIDs#2caa4a42 to nil")
tl_contacts_get_contact_ids_gen.go#L134: return fmt.Errorf("unable to decode contacts.getContactIDs#2caa4a42: %w", err)
tl_contacts_get_contact_ids_gen.go#L142: return fmt.Errorf("can't decode contacts.getContactIDs#2caa4a42 to nil")
tl_contacts_get_contact_ids_gen.go#L147: return fmt.Errorf("unable to decode contacts.getContactIDs#2caa4a42: field hash: %w", err)
tl_contacts_get_contacts_gen.go#L111: return fmt.Errorf("can't encode contacts.getContacts#c023849f as nil")
tl_contacts_get_contacts_gen.go#L120: return fmt.Errorf("can't encode contacts.getContacts#c023849f as nil")
tl_contacts_get_contacts_gen.go#L134: return fmt.Errorf("can't decode contacts.getContacts#c023849f to nil")
tl_contacts_get_contacts_gen.go#L137: return fmt.Errorf("unable to decode contacts.getContacts#c023849f: %w", err)
tl_contacts_get_contacts_gen.go#L145: return fmt.Errorf("can't decode contacts.getContacts#c023849f to nil")
tl_contacts_get_contacts_gen.go#L150: return fmt.Errorf("unable to decode contacts.getContacts#c023849f: field hash: %w", err)
tl_contacts_get_located_gen.go#L147: return fmt.Errorf("can't encode contacts.getLocated#d348bc44 as nil")
tl_contacts_get_located_gen.go#L156: return fmt.Errorf("can't encode contacts.getLocated#d348bc44 as nil")
tl_contacts_get_located_gen.go#L165: return fmt.Errorf("unable to encode contacts.getLocated#d348bc44: field flags: %w", err)
tl_contacts_get_located_gen.go#L168: return fmt.Errorf("unable to encode contacts.getLocated#d348bc44: field geo_point is nil")
tl_contacts_get_located_gen.go#L171: return fmt.Errorf("unable to encode contacts.getLocated#d348bc44: field geo_point: %w", err)
tl_contacts_get_located_gen.go#L223: return fmt.Errorf("can't decode contacts.getLocated#d348bc44 to nil")
tl_contacts_get_located_gen.go#L226: return fmt.Errorf("unable to decode contacts.getLocated#d348bc44: %w", err)
tl_contacts_get_located_gen.go#L234: return fmt.Errorf("can't decode contacts.getLocated#d348bc44 to nil")
tl_contacts_get_located_gen.go#L238: return fmt.Errorf("unable to decode contacts.getLocated#d348bc44: field flags: %w", err)
tl_contacts_get_located_gen.go#L245: return fmt.Errorf("unable to decode contacts.getLocated#d348bc44: field geo_point: %w", err)
tl_contacts_get_located_gen.go#L252: return fmt.Errorf("unable to decode contacts.getLocated#d348bc44: field self_expires: %w", err)
tl_contacts_get_saved_gen.go#L88: return fmt.Errorf("can't encode contacts.getSaved#82f1e39f as nil")
tl_contacts_get_saved_gen.go#L97: return fmt.Errorf("can't encode contacts.getSaved#82f1e39f as nil")
tl_contacts_get_saved_gen.go#L105: return fmt.Errorf("can't decode contacts.getSaved#82f1e39f to nil")
tl_contacts_get_saved_gen.go#L108: return fmt.Errorf("unable to decode contacts.getSaved#82f1e39f: %w", err)
tl_contacts_get_saved_gen.go#L116: return fmt.Errorf("can't decode contacts.getSaved#82f1e39f to nil")
tl_contacts_get_statuses_gen.go#L88: return fmt.Errorf("can't encode contacts.getStatuses#c4a353ee as nil")
tl_contacts_get_statuses_gen.go#L97: return fmt.Errorf("can't encode contacts.getStatuses#c4a353ee as nil")
tl_contacts_get_statuses_gen.go#L105: return fmt.Errorf("can't decode contacts.getStatuses#c4a353ee to nil")
tl_contacts_get_statuses_gen.go#L108: return fmt.Errorf("unable to decode contacts.getStatuses#c4a353ee: %w", err)
tl_contacts_get_statuses_gen.go#L116: return fmt.Errorf("can't decode contacts.getStatuses#c4a353ee to nil")
tl_contacts_get_top_peers_gen.go#L240: return fmt.Errorf("can't encode contacts.getTopPeers#d4982db5 as nil")
tl_contacts_get_top_peers_gen.go#L249: return fmt.Errorf("can't encode contacts.getTopPeers#d4982db5 as nil")
tl_contacts_get_top_peers_gen.go#L276: return fmt.Errorf("unable to encode contacts.getTopPeers#d4982db5: field flags: %w", err)
tl_contacts_get_top_peers_gen.go#L430: return fmt.Errorf("can't decode contacts.getTopPeers#d4982db5 to nil")
tl_contacts_get_top_peers_gen.go#L433: return fmt.Errorf("unable to decode contacts.getTopPeers#d4982db5: %w", err)
tl_contacts_get_top_peers_gen.go#L441: return fmt.Errorf("can't decode contacts.getTopPeers#d4982db5 to nil")
tl_contacts_get_top_peers_gen.go#L445: return fmt.Errorf("unable to decode contacts.getTopPeers#d4982db5: field flags: %w", err)
tl_contacts_get_top_peers_gen.go#L459: return fmt.Errorf("unable to decode contacts.getTopPeers#d4982db5: field offset: %w", err)
tl_contacts_get_top_peers_gen.go#L466: return fmt.Errorf("unable to decode contacts.getTopPeers#d4982db5: field limit: %w", err)
tl_contacts_get_top_peers_gen.go#L473: return fmt.Errorf("unable to decode contacts.getTopPeers#d4982db5: field hash: %w", err)
tl_contacts_import_contacts_gen.go#L111: return fmt.Errorf("can't encode contacts.importContacts#2c800be5 as nil")
tl_contacts_import_contacts_gen.go#L120: return fmt.Errorf("can't encode contacts.importContacts#2c800be5 as nil")
tl_contacts_import_contacts_gen.go#L125: return fmt.Errorf("unable to encode contacts.importContacts#2c800be5: field contacts element with index %d: %w", idx, err)
tl_contacts_import_contacts_gen.go#L139: return fmt.Errorf("can't decode contacts.importContacts#2c800be5 to nil")
tl_contacts_import_contacts_gen.go#L142: return fmt.Errorf("unable to decode contacts.importContacts#2c800be5: %w", err)
tl_contacts_import_contacts_gen.go#L150: return fmt.Errorf("can't decode contacts.importContacts#2c800be5 to nil")
tl_contacts_import_contacts_gen.go#L155: return fmt.Errorf("unable to decode contacts.importContacts#2c800be5: field contacts: %w", err)
tl_contacts_import_contacts_gen.go#L160: return fmt.Errorf("unable to decode contacts.importContacts#2c800be5: field contacts: %w", err)
tl_contacts_imported_contacts_gen.go#L142: return fmt.Errorf("can't encode contacts.importedContacts#77d01c3b as nil")
tl_contacts_imported_contacts_gen.go#L151: return fmt.Errorf("can't encode contacts.importedContacts#77d01c3b as nil")
tl_contacts_imported_contacts_gen.go#L156: return fmt.Errorf("unable to encode contacts.importedContacts#77d01c3b: field imported element with index %d: %w", idx, err)
tl_contacts_imported_contacts_gen.go#L162: return fmt.Errorf("unable to encode contacts.importedContacts#77d01c3b: field popular_invites element with index %d: %w", idx, err)
tl_contacts_imported_contacts_gen.go#L172: return fmt.Errorf("unable to encode contacts.importedContacts#77d01c3b: field users element with index %d is nil", idx)
tl_contacts_imported_contacts_gen.go#L175: return fmt.Errorf("unable to encode contacts.importedContacts#77d01c3b: field users element with index %d: %w", idx, err)
tl_contacts_imported_contacts_gen.go#L209: return fmt.Errorf("can't decode contacts.importedContacts#77d01c3b to nil")
tl_contacts_imported_contacts_gen.go#L212: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: %w", err)
tl_contacts_imported_contacts_gen.go#L220: return fmt.Errorf("can't decode contacts.importedContacts#77d01c3b to nil")
tl_contacts_imported_contacts_gen.go#L225: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field imported: %w", err)
tl_contacts_imported_contacts_gen.go#L230: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field imported: %w", err)
tl_contacts_imported_contacts_gen.go#L238: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field popular_invites: %w", err)
tl_contacts_imported_contacts_gen.go#L243: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field popular_invites: %w", err)
tl_contacts_imported_contacts_gen.go#L251: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field retry_contacts: %w", err)
tl_contacts_imported_contacts_gen.go#L256: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field retry_contacts: %w", err)
tl_contacts_imported_contacts_gen.go#L264: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field users: %w", err)
tl_contacts_imported_contacts_gen.go#L269: return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field users: %w", err)
tl_contacts_reset_saved_gen.go#L88: return fmt.Errorf("can't encode contacts.resetSaved#879537f1 as nil")
tl_contacts_reset_saved_gen.go#L97: return fmt.Errorf("can't encode contacts.resetSaved#879537f1 as nil")
tl_contacts_reset_saved_gen.go#L105: return fmt.Errorf("can't decode contacts.resetSaved#879537f1 to nil")
tl_contacts_reset_saved_gen.go#L108: return fmt.Errorf("unable to decode contacts.resetSaved#879537f1: %w", err)
tl_contacts_reset_saved_gen.go#L116: return fmt.Errorf("can't decode contacts.resetSaved#879537f1 to nil")
tl_contacts_reset_top_peer_rating_gen.go#L119: return fmt.Errorf("can't encode contacts.resetTopPeerRating#1ae373ac as nil")
tl_contacts_reset_top_peer_rating_gen.go#L128: return fmt.Errorf("can't encode contacts.resetTopPeerRating#1ae373ac as nil")
tl_contacts_reset_top_peer_rating_gen.go#L131: return fmt.Errorf("unable to encode contacts.resetTopPeerRating#1ae373ac: field category is nil")
tl_contacts_reset_top_peer_rating_gen.go#L134: return fmt.Errorf("unable to encode contacts.resetTopPeerRating#1ae373ac: field category: %w", err)
tl_contacts_reset_top_peer_rating_gen.go#L137: return fmt.Errorf("unable to encode contacts.resetTopPeerRating#1ae373ac: field peer is nil")
tl_contacts_reset_top_peer_rating_gen.go#L140: return fmt.Errorf("unable to encode contacts.resetTopPeerRating#1ae373ac: field peer: %w", err)
tl_contacts_reset_top_peer_rating_gen.go#L158: return fmt.Errorf("can't decode contacts.resetTopPeerRating#1ae373ac to nil")
tl_contacts_reset_top_peer_rating_gen.go#L161: return fmt.Errorf("unable to decode contacts.resetTopPeerRating#1ae373ac: %w", err)
tl_contacts_reset_top_peer_rating_gen.go#L169: return fmt.Errorf("can't decode contacts.resetTopPeerRating#1ae373ac to nil")
tl_contacts_reset_top_peer_rating_gen.go#L174: return fmt.Errorf("unable to decode contacts.resetTopPeerRating#1ae373ac: field category: %w", err)
tl_contacts_reset_top_peer_rating_gen.go#L181: return fmt.Errorf("unable to decode contacts.resetTopPeerRating#1ae373ac: field peer: %w", err)
tl_contacts_resolve_username_gen.go#L105: return fmt.Errorf("can't encode contacts.resolveUsername#f93ccba3 as nil")
tl_contacts_resolve_username_gen.go#L114: return fmt.Errorf("can't encode contacts.resolveUsername#f93ccba3 as nil")
tl_contacts_resolve_username_gen.go#L128: return fmt.Errorf("can't decode contacts.resolveUsername#f93ccba3 to nil")
tl_contacts_resolve_username_gen.go#L131: return fmt.Errorf("unable to decode contacts.resolveUsername#f93ccba3: %w", err)
tl_contacts_resolve_username_gen.go#L139: return fmt.Errorf("can't decode contacts.resolveUsername#f93ccba3 to nil")
tl_contacts_resolve_username_gen.go#L144: return fmt.Errorf("unable to decode contacts.resolveUsername#f93ccba3: field username: %w", err)
tl_contacts_resolved_peer_gen.go#L127: return fmt.Errorf("can't encode contacts.resolvedPeer#7f077ad9 as nil")
tl_contacts_resolved_peer_gen.go#L136: return fmt.Errorf("can't encode contacts.resolvedPeer#7f077ad9 as nil")
tl_contacts_resolved_peer_gen.go#L139: return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field peer is nil")
tl_contacts_resolved_peer_gen.go#L142: return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field peer: %w", err)
tl_contacts_resolved_peer_gen.go#L147: return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field chats element with index %d is nil", idx)
tl_contacts_resolved_peer_gen.go#L150: return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field chats element with index %d: %w", idx, err)
tl_contacts_resolved_peer_gen.go#L156: return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field users element with index %d is nil", idx)
tl_contacts_resolved_peer_gen.go#L159: return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field users element with index %d: %w", idx, err)
tl_contacts_resolved_peer_gen.go#L193: return fmt.Errorf("can't decode contacts.resolvedPeer#7f077ad9 to nil")
tl_contacts_resolved_peer_gen.go#L196: return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: %w", err)
tl_contacts_resolved_peer_gen.go#L204: return fmt.Errorf("can't decode contacts.resolvedPeer#7f077ad9 to nil")
tl_contacts_resolved_peer_gen.go#L209: return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field peer: %w", err)
tl_contacts_resolved_peer_gen.go#L216: return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field chats: %w", err)
tl_contacts_resolved_peer_gen.go#L221: return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field chats: %w", err)
tl_contacts_resolved_peer_gen.go#L229: return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field users: %w", err)
tl_contacts_resolved_peer_gen.go#L234: return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field users: %w", err)
tl_contacts_search_gen.go#L116: return fmt.Errorf("can't encode contacts.search#11f812d8 as nil")
tl_contacts_search_gen.go#L125: return fmt.Errorf("can't encode contacts.search#11f812d8 as nil")
tl_contacts_search_gen.go#L145: return fmt.Errorf("can't decode contacts.search#11f812d8 to nil")
tl_contacts_search_gen.go#L148: return fmt.Errorf("unable to decode contacts.search#11f812d8: %w", err)
tl_contacts_search_gen.go#L156: return fmt.Errorf("can't decode contacts.search#11f812d8 to nil")
tl_contacts_search_gen.go#L161: return fmt.Errorf("unable to decode contacts.search#11f812d8: field q: %w", err)
tl_contacts_search_gen.go#L168: return fmt.Errorf("unable to decode contacts.search#11f812d8: field limit: %w", err)
tl_contacts_toggle_top_peers_gen.go#L108: return fmt.Errorf("can't encode contacts.toggleTopPeers#8514bdda as nil")
tl_contacts_toggle_top_peers_gen.go#L117: return fmt.Errorf("can't encode contacts.toggleTopPeers#8514bdda as nil")
tl_contacts_toggle_top_peers_gen.go#L131: return fmt.Errorf("can't decode contacts.toggleTopPeers#8514bdda to nil")
tl_contacts_toggle_top_peers_gen.go#L134: return fmt.Errorf("unable to decode contacts.toggleTopPeers#8514bdda: %w", err)
tl_contacts_toggle_top_peers_gen.go#L142: return fmt.Errorf("can't decode contacts.toggleTopPeers#8514bdda to nil")
tl_contacts_toggle_top_peers_gen.go#L147: return fmt.Errorf("unable to decode contacts.toggleTopPeers#8514bdda: field enabled: %w", err)
tl_contacts_top_peers_gen.go#L88: return fmt.Errorf("can't encode contacts.topPeersNotModified#de266ef5 as nil")
tl_contacts_top_peers_gen.go#L97: return fmt.Errorf("can't encode contacts.topPeersNotModified#de266ef5 as nil")
tl_contacts_top_peers_gen.go#L105: return fmt.Errorf("can't decode contacts.topPeersNotModified#de266ef5 to nil")
tl_contacts_top_peers_gen.go#L108: return fmt.Errorf("unable to decode contacts.topPeersNotModified#de266ef5: %w", err)
tl_contacts_top_peers_gen.go#L116: return fmt.Errorf("can't decode contacts.topPeersNotModified#de266ef5 to nil")
tl_contacts_top_peers_gen.go#L229: return fmt.Errorf("can't encode contacts.topPeers#70b772a8 as nil")
tl_contacts_top_peers_gen.go#L238: return fmt.Errorf("can't encode contacts.topPeers#70b772a8 as nil")
tl_contacts_top_peers_gen.go#L243: return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field categories element with index %d: %w", idx, err)
tl_contacts_top_peers_gen.go#L249: return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field chats element with index %d is nil", idx)
tl_contacts_top_peers_gen.go#L252: return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field chats element with index %d: %w", idx, err)
tl_contacts_top_peers_gen.go#L258: return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field users element with index %d is nil", idx)
tl_contacts_top_peers_gen.go#L261: return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field users element with index %d: %w", idx, err)
tl_contacts_top_peers_gen.go#L295: return fmt.Errorf("can't decode contacts.topPeers#70b772a8 to nil")
tl_contacts_top_peers_gen.go#L298: return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: %w", err)
tl_contacts_top_peers_gen.go#L306: return fmt.Errorf("can't decode contacts.topPeers#70b772a8 to nil")
tl_contacts_top_peers_gen.go#L311: return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field categories: %w", err)
tl_contacts_top_peers_gen.go#L316: return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field categories: %w", err)
tl_contacts_top_peers_gen.go#L324: return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field chats: %w", err)
tl_contacts_top_peers_gen.go#L329: return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field chats: %w", err)
tl_contacts_top_peers_gen.go#L337: return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field users: %w", err)
tl_contacts_top_peers_gen.go#L342: return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field users: %w", err)
tl_contacts_top_peers_gen.go#L419: return fmt.Errorf("can't encode contacts.topPeersDisabled#b52c939d as nil")
tl_contacts_top_peers_gen.go#L428: return fmt.Errorf("can't encode contacts.topPeersDisabled#b52c939d as nil")
tl_contacts_top_peers_gen.go#L436: return fmt.Errorf("can't decode contacts.topPeersDisabled#b52c939d to nil")
tl_contacts_top_peers_gen.go#L439: return fmt.Errorf("unable to decode contacts.topPeersDisabled#b52c939d: %w", err)
tl_contacts_top_peers_gen.go#L447: return fmt.Errorf("can't decode contacts.topPeersDisabled#b52c939d to nil")
tl_contacts_top_peers_gen.go#L510: return nil, fmt.Errorf("unable to decode ContactsTopPeersClass: %w", err)
tl_contacts_top_peers_gen.go#L517: return nil, fmt.Errorf("unable to decode ContactsTopPeersClass: %w", err)
tl_contacts_top_peers_gen.go#L524: return nil, fmt.Errorf("unable to decode ContactsTopPeersClass: %w", err)
tl_contacts_top_peers_gen.go#L528: return nil, fmt.Errorf("unable to decode ContactsTopPeersClass: %w", bin.NewUnexpectedID(id))
tl_contacts_top_peers_gen.go#L540: return fmt.Errorf("unable to decode ContactsTopPeersBox to nil")
tl_contacts_top_peers_gen.go#L544: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_contacts_top_peers_gen.go#L553: return fmt.Errorf("unable to encode ContactsTopPeersClass as nil")
tl_contacts_unblock_gen.go#L105: return fmt.Errorf("can't encode contacts.unblock#bea65d50 as nil")
tl_contacts_unblock_gen.go#L114: return fmt.Errorf("can't encode contacts.unblock#bea65d50 as nil")
tl_contacts_unblock_gen.go#L117: return fmt.Errorf("unable to encode contacts.unblock#bea65d50: field id is nil")
tl_contacts_unblock_gen.go#L120: return fmt.Errorf("unable to encode contacts.unblock#bea65d50: field id: %w", err)
tl_contacts_unblock_gen.go#L133: return fmt.Errorf("can't decode contacts.unblock#bea65d50 to nil")
tl_contacts_unblock_gen.go#L136: return fmt.Errorf("unable to decode contacts.unblock#bea65d50: %w", err)
tl_contacts_unblock_gen.go#L144: return fmt.Errorf("can't decode contacts.unblock#bea65d50 to nil")
tl_contacts_unblock_gen.go#L149: return fmt.Errorf("unable to decode contacts.unblock#bea65d50: field id: %w", err)
tl_data_json_gen.go#L105: return fmt.Errorf("can't encode dataJSON#7d748d04 as nil")
tl_data_json_gen.go#L114: return fmt.Errorf("can't encode dataJSON#7d748d04 as nil")
tl_data_json_gen.go#L128: return fmt.Errorf("can't decode dataJSON#7d748d04 to nil")
tl_data_json_gen.go#L131: return fmt.Errorf("unable to decode dataJSON#7d748d04: %w", err)
tl_data_json_gen.go#L139: return fmt.Errorf("can't decode dataJSON#7d748d04 to nil")
tl_data_json_gen.go#L144: return fmt.Errorf("unable to decode dataJSON#7d748d04: field data: %w", err)
tl_dc_option_gen.go#L225: return fmt.Errorf("can't encode dcOption#18b7a10d as nil")
tl_dc_option_gen.go#L234: return fmt.Errorf("can't encode dcOption#18b7a10d as nil")
tl_dc_option_gen.go#L255: return fmt.Errorf("unable to encode dcOption#18b7a10d: field flags: %w", err)
tl_dc_option_gen.go#L379: return fmt.Errorf("can't decode dcOption#18b7a10d to nil")
tl_dc_option_gen.go#L382: return fmt.Errorf("unable to decode dcOption#18b7a10d: %w", err)
tl_dc_option_gen.go#L390: return fmt.Errorf("can't decode dcOption#18b7a10d to nil")
tl_dc_option_gen.go#L394: return fmt.Errorf("unable to decode dcOption#18b7a10d: field flags: %w", err)
tl_dc_option_gen.go#L405: return fmt.Errorf("unable to decode dcOption#18b7a10d: field id: %w", err)
tl_dc_option_gen.go#L412: return fmt.Errorf("unable to decode dcOption#18b7a10d: field ip_address: %w", err)
tl_dc_option_gen.go#L419: return fmt.Errorf("unable to decode dcOption#18b7a10d: field port: %w", err)
tl_dc_option_gen.go#L426: return fmt.Errorf("unable to decode dcOption#18b7a10d: field secret: %w", err)
tl_dialog_filter_gen.go#L315: return fmt.Errorf("can't encode dialogFilter#7438f7e8 as nil")
tl_dialog_filter_gen.go#L324: return fmt.Errorf("can't encode dialogFilter#7438f7e8 as nil")
tl_dialog_filter_gen.go#L354: return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field flags: %w", err)
tl_dialog_filter_gen.go#L364: return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field pinned_peers element with index %d is nil", idx)
tl_dialog_filter_gen.go#L367: return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field pinned_peers element with index %d: %w", idx, err)
tl_dialog_filter_gen.go#L373: return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field include_peers element with index %d is nil", idx)
tl_dialog_filter_gen.go#L376: return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field include_peers element with index %d: %w", idx, err)
tl_dialog_filter_gen.go#L382: return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field exclude_peers element with index %d is nil", idx)
tl_dialog_filter_gen.go#L385: return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field exclude_peers element with index %d: %w", idx, err)
tl_dialog_filter_gen.go#L577: return fmt.Errorf("can't decode dialogFilter#7438f7e8 to nil")
tl_dialog_filter_gen.go#L580: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: %w", err)
tl_dialog_filter_gen.go#L588: return fmt.Errorf("can't decode dialogFilter#7438f7e8 to nil")
tl_dialog_filter_gen.go#L592: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field flags: %w", err)
tl_dialog_filter_gen.go#L606: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field id: %w", err)
tl_dialog_filter_gen.go#L613: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field title: %w", err)
tl_dialog_filter_gen.go#L620: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field emoticon: %w", err)
tl_dialog_filter_gen.go#L627: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field pinned_peers: %w", err)
tl_dialog_filter_gen.go#L632: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field pinned_peers: %w", err)
tl_dialog_filter_gen.go#L640: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field include_peers: %w", err)
tl_dialog_filter_gen.go#L645: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field include_peers: %w", err)
tl_dialog_filter_gen.go#L653: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field exclude_peers: %w", err)
tl_dialog_filter_gen.go#L658: return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field exclude_peers: %w", err)
tl_dialog_filter_suggested_gen.go#L125: return fmt.Errorf("can't encode dialogFilterSuggested#77744d4a as nil")
tl_dialog_filter_suggested_gen.go#L134: return fmt.Errorf("can't encode dialogFilterSuggested#77744d4a as nil")
tl_dialog_filter_suggested_gen.go#L137: return fmt.Errorf("unable to encode dialogFilterSuggested#77744d4a: field filter: %w", err)
tl_dialog_filter_suggested_gen.go#L156: return fmt.Errorf("can't decode dialogFilterSuggested#77744d4a to nil")
tl_dialog_filter_suggested_gen.go#L159: return fmt.Errorf("unable to decode dialogFilterSuggested#77744d4a: %w", err)
tl_dialog_filter_suggested_gen.go#L167: return fmt.Errorf("can't decode dialogFilterSuggested#77744d4a to nil")
tl_dialog_filter_suggested_gen.go#L171: return fmt.Errorf("unable to decode dialogFilterSuggested#77744d4a: field filter: %w", err)
tl_dialog_filter_suggested_gen.go#L177: return fmt.Errorf("unable to decode dialogFilterSuggested#77744d4a: field description: %w", err)
tl_dialog_filter_suggested_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_dialog_filter_suggested_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_dialog_filter_suggested_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_dialog_filter_suggested_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_dialog_filter_suggested_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_dialog_filter_suggested_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_dialog_filter_suggested_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_dialog_filter_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_dialog_filter_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_dialog_filter_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_dialog_filter_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_dialog_filter_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_dialog_filter_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_dialog_filter_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_dialog_gen.go#L263: return fmt.Errorf("can't encode dialog#2c171f72 as nil")
tl_dialog_gen.go#L272: return fmt.Errorf("can't encode dialog#2c171f72 as nil")
tl_dialog_gen.go#L290: return fmt.Errorf("unable to encode dialog#2c171f72: field flags: %w", err)
tl_dialog_gen.go#L293: return fmt.Errorf("unable to encode dialog#2c171f72: field peer is nil")
tl_dialog_gen.go#L296: return fmt.Errorf("unable to encode dialog#2c171f72: field peer: %w", err)
tl_dialog_gen.go#L304: return fmt.Errorf("unable to encode dialog#2c171f72: field notify_settings: %w", err)
tl_dialog_gen.go#L311: return fmt.Errorf("unable to encode dialog#2c171f72: field draft is nil")
tl_dialog_gen.go#L314: return fmt.Errorf("unable to encode dialog#2c171f72: field draft: %w", err)
tl_dialog_gen.go#L438: return fmt.Errorf("can't decode dialog#2c171f72 to nil")
tl_dialog_gen.go#L441: return fmt.Errorf("unable to decode dialog#2c171f72: %w", err)
tl_dialog_gen.go#L449: return fmt.Errorf("can't decode dialog#2c171f72 to nil")
tl_dialog_gen.go#L453: return fmt.Errorf("unable to decode dialog#2c171f72: field flags: %w", err)
tl_dialog_gen.go#L461: return fmt.Errorf("unable to decode dialog#2c171f72: field peer: %w", err)
tl_dialog_gen.go#L468: return fmt.Errorf("unable to decode dialog#2c171f72: field top_message: %w", err)
tl_dialog_gen.go#L475: return fmt.Errorf("unable to decode dialog#2c171f72: field read_inbox_max_id: %w", err)
tl_dialog_gen.go#L482: return fmt.Errorf("unable to decode dialog#2c171f72: field read_outbox_max_id: %w", err)
tl_dialog_gen.go#L489: return fmt.Errorf("unable to decode dialog#2c171f72: field unread_count: %w", err)
tl_dialog_gen.go#L496: return fmt.Errorf("unable to decode dialog#2c171f72: field unread_mentions_count: %w", err)
tl_dialog_gen.go#L502: return fmt.Errorf("unable to decode dialog#2c171f72: field notify_settings: %w", err)
tl_dialog_gen.go#L508: return fmt.Errorf("unable to decode dialog#2c171f72: field pts: %w", err)
tl_dialog_gen.go#L515: return fmt.Errorf("unable to decode dialog#2c171f72: field draft: %w", err)
tl_dialog_gen.go#L522: return fmt.Errorf("unable to decode dialog#2c171f72: field folder_id: %w", err)
tl_dialog_gen.go#L701: return fmt.Errorf("can't encode dialogFolder#71bd134c as nil")
tl_dialog_gen.go#L710: return fmt.Errorf("can't encode dialogFolder#71bd134c as nil")
tl_dialog_gen.go#L716: return fmt.Errorf("unable to encode dialogFolder#71bd134c: field flags: %w", err)
tl_dialog_gen.go#L719: return fmt.Errorf("unable to encode dialogFolder#71bd134c: field folder: %w", err)
tl_dialog_gen.go#L722: return fmt.Errorf("unable to encode dialogFolder#71bd134c: field peer is nil")
tl_dialog_gen.go#L725: return fmt.Errorf("unable to encode dialogFolder#71bd134c: field peer: %w", err)
tl_dialog_gen.go#L789: return fmt.Errorf("can't decode dialogFolder#71bd134c to nil")
tl_dialog_gen.go#L792: return fmt.Errorf("unable to decode dialogFolder#71bd134c: %w", err)
tl_dialog_gen.go#L800: return fmt.Errorf("can't decode dialogFolder#71bd134c to nil")
tl_dialog_gen.go#L804: return fmt.Errorf("unable to decode dialogFolder#71bd134c: field flags: %w", err)
tl_dialog_gen.go#L810: return fmt.Errorf("unable to decode dialogFolder#71bd134c: field folder: %w", err)
tl_dialog_gen.go#L816: return fmt.Errorf("unable to decode dialogFolder#71bd134c: field peer: %w", err)
tl_dialog_gen.go#L823: return fmt.Errorf("unable to decode dialogFolder#71bd134c: field top_message: %w", err)
tl_dialog_gen.go#L830: return fmt.Errorf("unable to decode dialogFolder#71bd134c: field unread_muted_peers_count: %w", err)
tl_dialog_gen.go#L837: return fmt.Errorf("unable to decode dialogFolder#71bd134c: field unread_unmuted_peers_count: %w", err)
tl_dialog_gen.go#L844: return fmt.Errorf("unable to decode dialogFolder#71bd134c: field unread_muted_messages_count: %w", err)
tl_dialog_gen.go#L851: return fmt.Errorf("unable to decode dialogFolder#71bd134c: field unread_unmuted_messages_count: %w", err)
tl_dialog_gen.go#L934: return nil, fmt.Errorf("unable to decode DialogClass: %w", err)
tl_dialog_gen.go#L941: return nil, fmt.Errorf("unable to decode DialogClass: %w", err)
tl_dialog_gen.go#L945: return nil, fmt.Errorf("unable to decode DialogClass: %w", bin.NewUnexpectedID(id))
tl_dialog_gen.go#L957: return fmt.Errorf("unable to decode DialogBox to nil")
tl_dialog_gen.go#L961: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_dialog_gen.go#L970: return fmt.Errorf("unable to encode DialogClass as nil")
tl_dialog_peer_class_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_dialog_peer_class_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_dialog_peer_class_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d is nil", idx)
tl_dialog_peer_class_vector_gen.go#L119: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_dialog_peer_class_vector_gen.go#L138: return fmt.Errorf("can't decode Vector to nil")
tl_dialog_peer_class_vector_gen.go#L147: return fmt.Errorf("can't decode Vector to nil")
tl_dialog_peer_class_vector_gen.go#L152: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_dialog_peer_class_vector_gen.go#L157: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_dialog_peer_gen.go#L105: return fmt.Errorf("can't encode dialogPeer#e56dbf05 as nil")
tl_dialog_peer_gen.go#L114: return fmt.Errorf("can't encode dialogPeer#e56dbf05 as nil")
tl_dialog_peer_gen.go#L117: return fmt.Errorf("unable to encode dialogPeer#e56dbf05: field peer is nil")
tl_dialog_peer_gen.go#L120: return fmt.Errorf("unable to encode dialogPeer#e56dbf05: field peer: %w", err)
tl_dialog_peer_gen.go#L133: return fmt.Errorf("can't decode dialogPeer#e56dbf05 to nil")
tl_dialog_peer_gen.go#L136: return fmt.Errorf("unable to decode dialogPeer#e56dbf05: %w", err)
tl_dialog_peer_gen.go#L144: return fmt.Errorf("can't decode dialogPeer#e56dbf05 to nil")
tl_dialog_peer_gen.go#L149: return fmt.Errorf("unable to decode dialogPeer#e56dbf05: field peer: %w", err)
tl_dialog_peer_gen.go#L248: return fmt.Errorf("can't encode dialogPeerFolder#514519e2 as nil")
tl_dialog_peer_gen.go#L257: return fmt.Errorf("can't encode dialogPeerFolder#514519e2 as nil")
tl_dialog_peer_gen.go#L271: return fmt.Errorf("can't decode dialogPeerFolder#514519e2 to nil")
tl_dialog_peer_gen.go#L274: return fmt.Errorf("unable to decode dialogPeerFolder#514519e2: %w", err)
tl_dialog_peer_gen.go#L282: return fmt.Errorf("can't decode dialogPeerFolder#514519e2 to nil")
tl_dialog_peer_gen.go#L287: return fmt.Errorf("unable to decode dialogPeerFolder#514519e2: field folder_id: %w", err)
tl_dialog_peer_gen.go#L359: return nil, fmt.Errorf("unable to decode DialogPeerClass: %w", err)
tl_dialog_peer_gen.go#L366: return nil, fmt.Errorf("unable to decode DialogPeerClass: %w", err)
tl_dialog_peer_gen.go#L370: return nil, fmt.Errorf("unable to decode DialogPeerClass: %w", bin.NewUnexpectedID(id))
tl_dialog_peer_gen.go#L382: return fmt.Errorf("unable to decode DialogPeerBox to nil")
tl_dialog_peer_gen.go#L386: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_dialog_peer_gen.go#L395: return fmt.Errorf("unable to encode DialogPeerClass as nil")
tl_document_attribute_gen.go#L116: return fmt.Errorf("can't encode documentAttributeImageSize#6c37c15c as nil")
tl_document_attribute_gen.go#L125: return fmt.Errorf("can't encode documentAttributeImageSize#6c37c15c as nil")
tl_document_attribute_gen.go#L145: return fmt.Errorf("can't decode documentAttributeImageSize#6c37c15c to nil")
tl_document_attribute_gen.go#L148: return fmt.Errorf("unable to decode documentAttributeImageSize#6c37c15c: %w", err)
tl_document_attribute_gen.go#L156: return fmt.Errorf("can't decode documentAttributeImageSize#6c37c15c to nil")
tl_document_attribute_gen.go#L161: return fmt.Errorf("unable to decode documentAttributeImageSize#6c37c15c: field w: %w", err)
tl_document_attribute_gen.go#L168: return fmt.Errorf("unable to decode documentAttributeImageSize#6c37c15c: field h: %w", err)
tl_document_attribute_gen.go#L244: return fmt.Errorf("can't encode documentAttributeAnimated#11b58939 as nil")
tl_document_attribute_gen.go#L253: return fmt.Errorf("can't encode documentAttributeAnimated#11b58939 as nil")
tl_document_attribute_gen.go#L261: return fmt.Errorf("can't decode documentAttributeAnimated#11b58939 to nil")
tl_document_attribute_gen.go#L264: return fmt.Errorf("unable to decode documentAttributeAnimated#11b58939: %w", err)
tl_document_attribute_gen.go#L272: return fmt.Errorf("can't decode documentAttributeAnimated#11b58939 to nil")
tl_document_attribute_gen.go#L411: return fmt.Errorf("can't encode documentAttributeSticker#6319d612 as nil")
tl_document_attribute_gen.go#L420: return fmt.Errorf("can't encode documentAttributeSticker#6319d612 as nil")
tl_document_attribute_gen.go#L429: return fmt.Errorf("unable to encode documentAttributeSticker#6319d612: field flags: %w", err)
tl_document_attribute_gen.go#L433: return fmt.Errorf("unable to encode documentAttributeSticker#6319d612: field stickerset is nil")
tl_document_attribute_gen.go#L436: return fmt.Errorf("unable to encode documentAttributeSticker#6319d612: field stickerset: %w", err)
tl_document_attribute_gen.go#L440: return fmt.Errorf("unable to encode documentAttributeSticker#6319d612: field mask_coords: %w", err)
tl_document_attribute_gen.go#L490: return fmt.Errorf("can't decode documentAttributeSticker#6319d612 to nil")
tl_document_attribute_gen.go#L493: return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: %w", err)
tl_document_attribute_gen.go#L501: return fmt.Errorf("can't decode documentAttributeSticker#6319d612 to nil")
tl_document_attribute_gen.go#L505: return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: field flags: %w", err)
tl_document_attribute_gen.go#L512: return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: field alt: %w", err)
tl_document_attribute_gen.go#L519: return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: field stickerset: %w", err)
tl_document_attribute_gen.go#L525: return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: field mask_coords: %w", err)
tl_document_attribute_gen.go#L671: return fmt.Errorf("can't encode documentAttributeVideo#ef02ce6 as nil")
tl_document_attribute_gen.go#L680: return fmt.Errorf("can't encode documentAttributeVideo#ef02ce6 as nil")
tl_document_attribute_gen.go#L689: return fmt.Errorf("unable to encode documentAttributeVideo#ef02ce6: field flags: %w", err)
tl_document_attribute_gen.go#L747: return fmt.Errorf("can't decode documentAttributeVideo#ef02ce6 to nil")
tl_document_attribute_gen.go#L750: return fmt.Errorf("unable to decode documentAttributeVideo#ef02ce6: %w", err)
tl_document_attribute_gen.go#L758: return fmt.Errorf("can't decode documentAttributeVideo#ef02ce6 to nil")
tl_document_attribute_gen.go#L762: return fmt.Errorf("unable to decode documentAttributeVideo#ef02ce6: field flags: %w", err)
tl_document_attribute_gen.go#L770: return fmt.Errorf("unable to decode documentAttributeVideo#ef02ce6: field duration: %w", err)
tl_document_attribute_gen.go#L777: return fmt.Errorf("unable to decode documentAttributeVideo#ef02ce6: field w: %w", err)
tl_document_attribute_gen.go#L784: return fmt.Errorf("unable to decode documentAttributeVideo#ef02ce6: field h: %w", err)
tl_document_attribute_gen.go#L948: return fmt.Errorf("can't encode documentAttributeAudio#9852f9c6 as nil")
tl_document_attribute_gen.go#L957: return fmt.Errorf("can't encode documentAttributeAudio#9852f9c6 as nil")
tl_document_attribute_gen.go#L972: return fmt.Errorf("unable to encode documentAttributeAudio#9852f9c6: field flags: %w", err)
tl_document_attribute_gen.go#L1056: return fmt.Errorf("can't decode documentAttributeAudio#9852f9c6 to nil")
tl_document_attribute_gen.go#L1059: return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: %w", err)
tl_document_attribute_gen.go#L1067: return fmt.Errorf("can't decode documentAttributeAudio#9852f9c6 to nil")
tl_document_attribute_gen.go#L1071: return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field flags: %w", err)
tl_document_attribute_gen.go#L1078: return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field duration: %w", err)
tl_document_attribute_gen.go#L1085: return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field title: %w", err)
tl_document_attribute_gen.go#L1092: return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field performer: %w", err)
tl_document_attribute_gen.go#L1099: return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field waveform: %w", err)
tl_document_attribute_gen.go#L1192: return fmt.Errorf("can't encode documentAttributeFilename#15590068 as nil")
tl_document_attribute_gen.go#L1201: return fmt.Errorf("can't encode documentAttributeFilename#15590068 as nil")
tl_document_attribute_gen.go#L1215: return fmt.Errorf("can't decode documentAttributeFilename#15590068 to nil")
tl_document_attribute_gen.go#L1218: return fmt.Errorf("unable to decode documentAttributeFilename#15590068: %w", err)
tl_document_attribute_gen.go#L1226: return fmt.Errorf("can't decode documentAttributeFilename#15590068 to nil")
tl_document_attribute_gen.go#L1231: return fmt.Errorf("unable to decode documentAttributeFilename#15590068: field file_name: %w", err)
tl_document_attribute_gen.go#L1307: return fmt.Errorf("can't encode documentAttributeHasStickers#9801d2f7 as nil")
tl_document_attribute_gen.go#L1316: return fmt.Errorf("can't encode documentAttributeHasStickers#9801d2f7 as nil")
tl_document_attribute_gen.go#L1324: return fmt.Errorf("can't decode documentAttributeHasStickers#9801d2f7 to nil")
tl_document_attribute_gen.go#L1327: return fmt.Errorf("unable to decode documentAttributeHasStickers#9801d2f7: %w", err)
tl_document_attribute_gen.go#L1335: return fmt.Errorf("can't decode documentAttributeHasStickers#9801d2f7 to nil")
tl_document_attribute_gen.go#L1402: return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
tl_document_attribute_gen.go#L1409: return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
tl_document_attribute_gen.go#L1416: return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
tl_document_attribute_gen.go#L1423: return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
tl_document_attribute_gen.go#L1430: return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
tl_document_attribute_gen.go#L1437: return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
tl_document_attribute_gen.go#L1444: return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
tl_document_attribute_gen.go#L1448: return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", bin.NewUnexpectedID(id))
tl_document_attribute_gen.go#L1460: return fmt.Errorf("unable to decode DocumentAttributeBox to nil")
tl_document_attribute_gen.go#L1464: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_document_attribute_gen.go#L1473: return fmt.Errorf("unable to encode DocumentAttributeClass as nil")
tl_document_gen.go#L105: return fmt.Errorf("can't encode documentEmpty#36f8c871 as nil")
tl_document_gen.go#L114: return fmt.Errorf("can't encode documentEmpty#36f8c871 as nil")
tl_document_gen.go#L128: return fmt.Errorf("can't decode documentEmpty#36f8c871 to nil")
tl_document_gen.go#L131: return fmt.Errorf("unable to decode documentEmpty#36f8c871: %w", err)
tl_document_gen.go#L139: return fmt.Errorf("can't decode documentEmpty#36f8c871 to nil")
tl_document_gen.go#L144: return fmt.Errorf("unable to decode documentEmpty#36f8c871: field id: %w", err)
tl_document_gen.go#L359: return fmt.Errorf("can't encode document#1e87342b as nil")
tl_document_gen.go#L368: return fmt.Errorf("can't encode document#1e87342b as nil")
tl_document_gen.go#L377: return fmt.Errorf("unable to encode document#1e87342b: field flags: %w", err)
tl_document_gen.go#L389: return fmt.Errorf("unable to encode document#1e87342b: field thumbs element with index %d is nil", idx)
tl_document_gen.go#L392: return fmt.Errorf("unable to encode document#1e87342b: field thumbs element with index %d: %w", idx, err)
tl_document_gen.go#L400: return fmt.Errorf("unable to encode document#1e87342b: field video_thumbs element with index %d: %w", idx, err)
tl_document_gen.go#L408: return fmt.Errorf("unable to encode document#1e87342b: field attributes element with index %d is nil", idx)
tl_document_gen.go#L411: return fmt.Errorf("unable to encode document#1e87342b: field attributes element with index %d: %w", idx, err)
tl_document_gen.go#L503: return fmt.Errorf("can't decode document#1e87342b to nil")
tl_document_gen.go#L506: return fmt.Errorf("unable to decode document#1e87342b: %w", err)
tl_document_gen.go#L514: return fmt.Errorf("can't decode document#1e87342b to nil")
tl_document_gen.go#L518: return fmt.Errorf("unable to decode document#1e87342b: field flags: %w", err)
tl_document_gen.go#L524: return fmt.Errorf("unable to decode document#1e87342b: field id: %w", err)
tl_document_gen.go#L531: return fmt.Errorf("unable to decode document#1e87342b: field access_hash: %w", err)
tl_document_gen.go#L538: return fmt.Errorf("unable to decode document#1e87342b: field file_reference: %w", err)
tl_document_gen.go#L545: return fmt.Errorf("unable to decode document#1e87342b: field date: %w", err)
tl_document_gen.go#L552: return fmt.Errorf("unable to decode document#1e87342b: field mime_type: %w", err)
tl_document_gen.go#L559: return fmt.Errorf("unable to decode document#1e87342b: field size: %w", err)
tl_document_gen.go#L566: return fmt.Errorf("unable to decode document#1e87342b: field thumbs: %w", err)
tl_document_gen.go#L571: return fmt.Errorf("unable to decode document#1e87342b: field thumbs: %w", err)
tl_document_gen.go#L579: return fmt.Errorf("unable to decode document#1e87342b: field video_thumbs: %w", err)
tl_document_gen.go#L584: return fmt.Errorf("unable to decode document#1e87342b: field video_thumbs: %w", err)
tl_document_gen.go#L592: return fmt.Errorf("unable to decode document#1e87342b: field dc_id: %w", err)
tl_document_gen.go#L599: return fmt.Errorf("unable to decode document#1e87342b: field attributes: %w", err)
tl_document_gen.go#L604: return fmt.Errorf("unable to decode document#1e87342b: field attributes: %w", err)
tl_document_gen.go#L705: return nil, fmt.Errorf("unable to decode DocumentClass: %w", err)
tl_document_gen.go#L712: return nil, fmt.Errorf("unable to decode DocumentClass: %w", err)
tl_document_gen.go#L716: return nil, fmt.Errorf("unable to decode DocumentClass: %w", bin.NewUnexpectedID(id))
tl_document_gen.go#L728: return fmt.Errorf("unable to decode DocumentBox to nil")
tl_document_gen.go#L732: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_document_gen.go#L741: return fmt.Errorf("unable to encode DocumentClass as nil")
tl_draft_message_gen.go#L119: return fmt.Errorf("can't encode draftMessageEmpty#1b0c841a as nil")
tl_draft_message_gen.go#L128: return fmt.Errorf("can't encode draftMessageEmpty#1b0c841a as nil")
tl_draft_message_gen.go#L134: return fmt.Errorf("unable to encode draftMessageEmpty#1b0c841a: field flags: %w", err)
tl_draft_message_gen.go#L160: return fmt.Errorf("can't decode draftMessageEmpty#1b0c841a to nil")
tl_draft_message_gen.go#L163: return fmt.Errorf("unable to decode draftMessageEmpty#1b0c841a: %w", err)
tl_draft_message_gen.go#L171: return fmt.Errorf("can't decode draftMessageEmpty#1b0c841a to nil")
tl_draft_message_gen.go#L175: return fmt.Errorf("unable to decode draftMessageEmpty#1b0c841a: field flags: %w", err)
tl_draft_message_gen.go#L181: return fmt.Errorf("unable to decode draftMessageEmpty#1b0c841a: field date: %w", err)
tl_draft_message_gen.go#L345: return fmt.Errorf("can't encode draftMessage#fd8e711f as nil")
tl_draft_message_gen.go#L354: return fmt.Errorf("can't encode draftMessage#fd8e711f as nil")
tl_draft_message_gen.go#L366: return fmt.Errorf("unable to encode draftMessage#fd8e711f: field flags: %w", err)
tl_draft_message_gen.go#L376: return fmt.Errorf("unable to encode draftMessage#fd8e711f: field entities element with index %d is nil", idx)
tl_draft_message_gen.go#L379: return fmt.Errorf("unable to encode draftMessage#fd8e711f: field entities element with index %d: %w", idx, err)
tl_draft_message_gen.go#L454: return fmt.Errorf("can't decode draftMessage#fd8e711f to nil")
tl_draft_message_gen.go#L457: return fmt.Errorf("unable to decode draftMessage#fd8e711f: %w", err)
tl_draft_message_gen.go#L465: return fmt.Errorf("can't decode draftMessage#fd8e711f to nil")
tl_draft_message_gen.go#L469: return fmt.Errorf("unable to decode draftMessage#fd8e711f: field flags: %w", err)
tl_draft_message_gen.go#L476: return fmt.Errorf("unable to decode draftMessage#fd8e711f: field reply_to_msg_id: %w", err)
tl_draft_message_gen.go#L483: return fmt.Errorf("unable to decode draftMessage#fd8e711f: field message: %w", err)
tl_draft_message_gen.go#L490: return fmt.Errorf("unable to decode draftMessage#fd8e711f: field entities: %w", err)
tl_draft_message_gen.go#L495: return fmt.Errorf("unable to decode draftMessage#fd8e711f: field entities: %w", err)
tl_draft_message_gen.go#L503: return fmt.Errorf("unable to decode draftMessage#fd8e711f: field date: %w", err)
tl_draft_message_gen.go#L580: return nil, fmt.Errorf("unable to decode DraftMessageClass: %w", err)
tl_draft_message_gen.go#L587: return nil, fmt.Errorf("unable to decode DraftMessageClass: %w", err)
tl_draft_message_gen.go#L591: return nil, fmt.Errorf("unable to decode DraftMessageClass: %w", bin.NewUnexpectedID(id))
tl_draft_message_gen.go#L603: return fmt.Errorf("unable to decode DraftMessageBox to nil")
tl_draft_message_gen.go#L607: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_draft_message_gen.go#L616: return fmt.Errorf("unable to encode DraftMessageClass as nil")
tl_emoji_keyword_gen.go#L116: return fmt.Errorf("can't encode emojiKeyword#d5b3b9f9 as nil")
tl_emoji_keyword_gen.go#L125: return fmt.Errorf("can't encode emojiKeyword#d5b3b9f9 as nil")
tl_emoji_keyword_gen.go#L148: return fmt.Errorf("can't decode emojiKeyword#d5b3b9f9 to nil")
tl_emoji_keyword_gen.go#L151: return fmt.Errorf("unable to decode emojiKeyword#d5b3b9f9: %w", err)
tl_emoji_keyword_gen.go#L159: return fmt.Errorf("can't decode emojiKeyword#d5b3b9f9 to nil")
tl_emoji_keyword_gen.go#L164: return fmt.Errorf("unable to decode emojiKeyword#d5b3b9f9: field keyword: %w", err)
tl_emoji_keyword_gen.go#L171: return fmt.Errorf("unable to decode emojiKeyword#d5b3b9f9: field emoticons: %w", err)
tl_emoji_keyword_gen.go#L176: return fmt.Errorf("unable to decode emojiKeyword#d5b3b9f9: field emoticons: %w", err)
tl_emoji_keyword_gen.go#L281: return fmt.Errorf("can't encode emojiKeywordDeleted#236df622 as nil")
tl_emoji_keyword_gen.go#L290: return fmt.Errorf("can't encode emojiKeywordDeleted#236df622 as nil")
tl_emoji_keyword_gen.go#L313: return fmt.Errorf("can't decode emojiKeywordDeleted#236df622 to nil")
tl_emoji_keyword_gen.go#L316: return fmt.Errorf("unable to decode emojiKeywordDeleted#236df622: %w", err)
tl_emoji_keyword_gen.go#L324: return fmt.Errorf("can't decode emojiKeywordDeleted#236df622 to nil")
tl_emoji_keyword_gen.go#L329: return fmt.Errorf("unable to decode emojiKeywordDeleted#236df622: field keyword: %w", err)
tl_emoji_keyword_gen.go#L336: return fmt.Errorf("unable to decode emojiKeywordDeleted#236df622: field emoticons: %w", err)
tl_emoji_keyword_gen.go#L341: return fmt.Errorf("unable to decode emojiKeywordDeleted#236df622: field emoticons: %w", err)
tl_emoji_keyword_gen.go#L412: return nil, fmt.Errorf("unable to decode EmojiKeywordClass: %w", err)
tl_emoji_keyword_gen.go#L419: return nil, fmt.Errorf("unable to decode EmojiKeywordClass: %w", err)
tl_emoji_keyword_gen.go#L423: return nil, fmt.Errorf("unable to decode EmojiKeywordClass: %w", bin.NewUnexpectedID(id))
tl_emoji_keyword_gen.go#L435: return fmt.Errorf("unable to decode EmojiKeywordBox to nil")
tl_emoji_keyword_gen.go#L439: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_emoji_keyword_gen.go#L448: return fmt.Errorf("unable to encode EmojiKeywordClass as nil")
tl_emoji_keywords_difference_gen.go#L138: return fmt.Errorf("can't encode emojiKeywordsDifference#5cc761bd as nil")
tl_emoji_keywords_difference_gen.go#L147: return fmt.Errorf("can't encode emojiKeywordsDifference#5cc761bd as nil")
tl_emoji_keywords_difference_gen.go#L155: return fmt.Errorf("unable to encode emojiKeywordsDifference#5cc761bd: field keywords element with index %d is nil", idx)
tl_emoji_keywords_difference_gen.go#L158: return fmt.Errorf("unable to encode emojiKeywordsDifference#5cc761bd: field keywords element with index %d: %w", idx, err)
tl_emoji_keywords_difference_gen.go#L192: return fmt.Errorf("can't decode emojiKeywordsDifference#5cc761bd to nil")
tl_emoji_keywords_difference_gen.go#L195: return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: %w", err)
tl_emoji_keywords_difference_gen.go#L203: return fmt.Errorf("can't decode emojiKeywordsDifference#5cc761bd to nil")
tl_emoji_keywords_difference_gen.go#L208: return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field lang_code: %w", err)
tl_emoji_keywords_difference_gen.go#L215: return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field from_version: %w", err)
tl_emoji_keywords_difference_gen.go#L222: return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field version: %w", err)
tl_emoji_keywords_difference_gen.go#L229: return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field keywords: %w", err)
tl_emoji_keywords_difference_gen.go#L234: return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field keywords: %w", err)
tl_emoji_language_gen.go#L105: return fmt.Errorf("can't encode emojiLanguage#b3fb5361 as nil")
tl_emoji_language_gen.go#L114: return fmt.Errorf("can't encode emojiLanguage#b3fb5361 as nil")
tl_emoji_language_gen.go#L128: return fmt.Errorf("can't decode emojiLanguage#b3fb5361 to nil")
tl_emoji_language_gen.go#L131: return fmt.Errorf("unable to decode emojiLanguage#b3fb5361: %w", err)
tl_emoji_language_gen.go#L139: return fmt.Errorf("can't decode emojiLanguage#b3fb5361 to nil")
tl_emoji_language_gen.go#L144: return fmt.Errorf("unable to decode emojiLanguage#b3fb5361: field lang_code: %w", err)
tl_emoji_language_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_emoji_language_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_emoji_language_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_emoji_language_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_emoji_language_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_emoji_language_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_emoji_language_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_emoji_url_gen.go#L107: return fmt.Errorf("can't encode emojiURL#a575739d as nil")
tl_emoji_url_gen.go#L116: return fmt.Errorf("can't encode emojiURL#a575739d as nil")
tl_emoji_url_gen.go#L130: return fmt.Errorf("can't decode emojiURL#a575739d to nil")
tl_emoji_url_gen.go#L133: return fmt.Errorf("unable to decode emojiURL#a575739d: %w", err)
tl_emoji_url_gen.go#L141: return fmt.Errorf("can't decode emojiURL#a575739d to nil")
tl_emoji_url_gen.go#L146: return fmt.Errorf("unable to decode emojiURL#a575739d: field url: %w", err)
tl_encrypted_chat_gen.go#L105: return fmt.Errorf("can't encode encryptedChatEmpty#ab7ec0a0 as nil")
tl_encrypted_chat_gen.go#L114: return fmt.Errorf("can't encode encryptedChatEmpty#ab7ec0a0 as nil")
tl_encrypted_chat_gen.go#L128: return fmt.Errorf("can't decode encryptedChatEmpty#ab7ec0a0 to nil")
tl_encrypted_chat_gen.go#L131: return fmt.Errorf("unable to decode encryptedChatEmpty#ab7ec0a0: %w", err)
tl_encrypted_chat_gen.go#L139: return fmt.Errorf("can't decode encryptedChatEmpty#ab7ec0a0 to nil")
tl_encrypted_chat_gen.go#L144: return fmt.Errorf("unable to decode encryptedChatEmpty#ab7ec0a0: field id: %w", err)
tl_encrypted_chat_gen.go#L281: return fmt.Errorf("can't encode encryptedChatWaiting#3bf703dc as nil")
tl_encrypted_chat_gen.go#L290: return fmt.Errorf("can't encode encryptedChatWaiting#3bf703dc as nil")
tl_encrypted_chat_gen.go#L328: return fmt.Errorf("can't decode encryptedChatWaiting#3bf703dc to nil")
tl_encrypted_chat_gen.go#L331: return fmt.Errorf("unable to decode encryptedChatWaiting#3bf703dc: %w", err)
tl_encrypted_chat_gen.go#L339: return fmt.Errorf("can't decode encryptedChatWaiting#3bf703dc to nil")
tl_encrypted_chat_gen.go#L344: return fmt.Errorf("unable to decode encryptedChatWaiting#3bf703dc: field id: %w", err)
tl_encrypted_chat_gen.go#L351: return fmt.Errorf("unable to decode encryptedChatWaiting#3bf703dc: field access_hash: %w", err)
tl_encrypted_chat_gen.go#L358: return fmt.Errorf("unable to decode encryptedChatWaiting#3bf703dc: field date: %w", err)
tl_encrypted_chat_gen.go#L365: return fmt.Errorf("unable to decode encryptedChatWaiting#3bf703dc: field admin_id: %w", err)
tl_encrypted_chat_gen.go#L372: return fmt.Errorf("unable to decode encryptedChatWaiting#3bf703dc: field participant_id: %w", err)
tl_encrypted_chat_gen.go#L551: return fmt.Errorf("can't encode encryptedChatRequested#62718a82 as nil")
tl_encrypted_chat_gen.go#L560: return fmt.Errorf("can't encode encryptedChatRequested#62718a82 as nil")
tl_encrypted_chat_gen.go#L566: return fmt.Errorf("unable to encode encryptedChatRequested#62718a82: field flags: %w", err)
tl_encrypted_chat_gen.go#L628: return fmt.Errorf("can't decode encryptedChatRequested#62718a82 to nil")
tl_encrypted_chat_gen.go#L631: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: %w", err)
tl_encrypted_chat_gen.go#L639: return fmt.Errorf("can't decode encryptedChatRequested#62718a82 to nil")
tl_encrypted_chat_gen.go#L643: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: field flags: %w", err)
tl_encrypted_chat_gen.go#L649: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: field folder_id: %w", err)
tl_encrypted_chat_gen.go#L656: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: field id: %w", err)
tl_encrypted_chat_gen.go#L663: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: field access_hash: %w", err)
tl_encrypted_chat_gen.go#L670: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: field date: %w", err)
tl_encrypted_chat_gen.go#L677: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: field admin_id: %w", err)
tl_encrypted_chat_gen.go#L684: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: field participant_id: %w", err)
tl_encrypted_chat_gen.go#L691: return fmt.Errorf("unable to decode encryptedChatRequested#62718a82: field g_a: %w", err)
tl_encrypted_chat_gen.go#L854: return fmt.Errorf("can't encode encryptedChat#fa56ce36 as nil")
tl_encrypted_chat_gen.go#L863: return fmt.Errorf("can't encode encryptedChat#fa56ce36 as nil")
tl_encrypted_chat_gen.go#L913: return fmt.Errorf("can't decode encryptedChat#fa56ce36 to nil")
tl_encrypted_chat_gen.go#L916: return fmt.Errorf("unable to decode encryptedChat#fa56ce36: %w", err)
tl_encrypted_chat_gen.go#L924: return fmt.Errorf("can't decode encryptedChat#fa56ce36 to nil")
tl_encrypted_chat_gen.go#L929: return fmt.Errorf("unable to decode encryptedChat#fa56ce36: field id: %w", err)
tl_encrypted_chat_gen.go#L936: return fmt.Errorf("unable to decode encryptedChat#fa56ce36: field access_hash: %w", err)
tl_encrypted_chat_gen.go#L943: return fmt.Errorf("unable to decode encryptedChat#fa56ce36: field date: %w", err)
tl_encrypted_chat_gen.go#L950: return fmt.Errorf("unable to decode encryptedChat#fa56ce36: field admin_id: %w", err)
tl_encrypted_chat_gen.go#L957: return fmt.Errorf("unable to decode encryptedChat#fa56ce36: field participant_id: %w", err)
tl_encrypted_chat_gen.go#L964: return fmt.Errorf("unable to decode encryptedChat#fa56ce36: field g_a_or_b: %w", err)
tl_encrypted_chat_gen.go#L971: return fmt.Errorf("unable to decode encryptedChat#fa56ce36: field key_fingerprint: %w", err)
tl_encrypted_chat_gen.go#L1081: return fmt.Errorf("can't encode encryptedChatDiscarded#1e1c7c45 as nil")
tl_encrypted_chat_gen.go#L1090: return fmt.Errorf("can't encode encryptedChatDiscarded#1e1c7c45 as nil")
tl_encrypted_chat_gen.go#L1096: return fmt.Errorf("unable to encode encryptedChatDiscarded#1e1c7c45: field flags: %w", err)
tl_encrypted_chat_gen.go#L1126: return fmt.Errorf("can't decode encryptedChatDiscarded#1e1c7c45 to nil")
tl_encrypted_chat_gen.go#L1129: return fmt.Errorf("unable to decode encryptedChatDiscarded#1e1c7c45: %w", err)
tl_encrypted_chat_gen.go#L1137: return fmt.Errorf("can't decode encryptedChatDiscarded#1e1c7c45 to nil")
tl_encrypted_chat_gen.go#L1141: return fmt.Errorf("unable to decode encryptedChatDiscarded#1e1c7c45: field flags: %w", err)
tl_encrypted_chat_gen.go#L1148: return fmt.Errorf("unable to decode encryptedChatDiscarded#1e1c7c45: field id: %w", err)
tl_encrypted_chat_gen.go#L1283: return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
tl_encrypted_chat_gen.go#L1290: return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
tl_encrypted_chat_gen.go#L1297: return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
tl_encrypted_chat_gen.go#L1304: return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
tl_encrypted_chat_gen.go#L1311: return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
tl_encrypted_chat_gen.go#L1315: return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", bin.NewUnexpectedID(id))
tl_encrypted_chat_gen.go#L1327: return fmt.Errorf("unable to decode EncryptedChatBox to nil")
tl_encrypted_chat_gen.go#L1331: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_encrypted_chat_gen.go#L1340: return fmt.Errorf("unable to encode EncryptedChatClass as nil")
tl_encrypted_file_gen.go#L88: return fmt.Errorf("can't encode encryptedFileEmpty#c21f497e as nil")
tl_encrypted_file_gen.go#L97: return fmt.Errorf("can't encode encryptedFileEmpty#c21f497e as nil")
tl_encrypted_file_gen.go#L105: return fmt.Errorf("can't decode encryptedFileEmpty#c21f497e to nil")
tl_encrypted_file_gen.go#L108: return fmt.Errorf("unable to decode encryptedFileEmpty#c21f497e: %w", err)
tl_encrypted_file_gen.go#L116: return fmt.Errorf("can't decode encryptedFileEmpty#c21f497e to nil")
tl_encrypted_file_gen.go#L251: return fmt.Errorf("can't encode encryptedFile#4a70994c as nil")
tl_encrypted_file_gen.go#L260: return fmt.Errorf("can't encode encryptedFile#4a70994c as nil")
tl_encrypted_file_gen.go#L298: return fmt.Errorf("can't decode encryptedFile#4a70994c to nil")
tl_encrypted_file_gen.go#L301: return fmt.Errorf("unable to decode encryptedFile#4a70994c: %w", err)
tl_encrypted_file_gen.go#L309: return fmt.Errorf("can't decode encryptedFile#4a70994c to nil")
tl_encrypted_file_gen.go#L314: return fmt.Errorf("unable to decode encryptedFile#4a70994c: field id: %w", err)
tl_encrypted_file_gen.go#L321: return fmt.Errorf("unable to decode encryptedFile#4a70994c: field access_hash: %w", err)
tl_encrypted_file_gen.go#L328: return fmt.Errorf("unable to decode encryptedFile#4a70994c: field size: %w", err)
tl_encrypted_file_gen.go#L335: return fmt.Errorf("unable to decode encryptedFile#4a70994c: field dc_id: %w", err)
tl_encrypted_file_gen.go#L342: return fmt.Errorf("unable to decode encryptedFile#4a70994c: field key_fingerprint: %w", err)
tl_encrypted_file_gen.go#L437: return nil, fmt.Errorf("unable to decode EncryptedFileClass: %w", err)
tl_encrypted_file_gen.go#L444: return nil, fmt.Errorf("unable to decode EncryptedFileClass: %w", err)
tl_encrypted_file_gen.go#L448: return nil, fmt.Errorf("unable to decode EncryptedFileClass: %w", bin.NewUnexpectedID(id))
tl_encrypted_file_gen.go#L460: return fmt.Errorf("unable to decode EncryptedFileBox to nil")
tl_encrypted_file_gen.go#L464: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_encrypted_file_gen.go#L473: return fmt.Errorf("unable to encode EncryptedFileClass as nil")
tl_encrypted_message_gen.go#L153: return fmt.Errorf("can't encode encryptedMessage#ed18c118 as nil")
tl_encrypted_message_gen.go#L162: return fmt.Errorf("can't encode encryptedMessage#ed18c118 as nil")
tl_encrypted_message_gen.go#L169: return fmt.Errorf("unable to encode encryptedMessage#ed18c118: field file is nil")
tl_encrypted_message_gen.go#L172: return fmt.Errorf("unable to encode encryptedMessage#ed18c118: field file: %w", err)
tl_encrypted_message_gen.go#L205: return fmt.Errorf("can't decode encryptedMessage#ed18c118 to nil")
tl_encrypted_message_gen.go#L208: return fmt.Errorf("unable to decode encryptedMessage#ed18c118: %w", err)
tl_encrypted_message_gen.go#L216: return fmt.Errorf("can't decode encryptedMessage#ed18c118 to nil")
tl_encrypted_message_gen.go#L221: return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field random_id: %w", err)
tl_encrypted_message_gen.go#L228: return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field chat_id: %w", err)
tl_encrypted_message_gen.go#L235: return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field date: %w", err)
tl_encrypted_message_gen.go#L242: return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field bytes: %w", err)
tl_encrypted_message_gen.go#L249: return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field file: %w", err)
tl_encrypted_message_gen.go#L379: return fmt.Errorf("can't encode encryptedMessageService#23734b06 as nil")
tl_encrypted_message_gen.go#L388: return fmt.Errorf("can't encode encryptedMessageService#23734b06 as nil")
tl_encrypted_message_gen.go#L420: return fmt.Errorf("can't decode encryptedMessageService#23734b06 to nil")
tl_encrypted_message_gen.go#L423: return fmt.Errorf("unable to decode encryptedMessageService#23734b06: %w", err)
tl_encrypted_message_gen.go#L431: return fmt.Errorf("can't decode encryptedMessageService#23734b06 to nil")
tl_encrypted_message_gen.go#L436: return fmt.Errorf("unable to decode encryptedMessageService#23734b06: field random_id: %w", err)
tl_encrypted_message_gen.go#L443: return fmt.Errorf("unable to decode encryptedMessageService#23734b06: field chat_id: %w", err)
tl_encrypted_message_gen.go#L450: return fmt.Errorf("unable to decode encryptedMessageService#23734b06: field date: %w", err)
tl_encrypted_message_gen.go#L457: return fmt.Errorf("unable to decode encryptedMessageService#23734b06: field bytes: %w", err)
tl_encrypted_message_gen.go#L537: return nil, fmt.Errorf("unable to decode EncryptedMessageClass: %w", err)
tl_encrypted_message_gen.go#L544: return nil, fmt.Errorf("unable to decode EncryptedMessageClass: %w", err)
tl_encrypted_message_gen.go#L548: return nil, fmt.Errorf("unable to decode EncryptedMessageClass: %w", bin.NewUnexpectedID(id))
tl_encrypted_message_gen.go#L560: return fmt.Errorf("unable to decode EncryptedMessageBox to nil")
tl_encrypted_message_gen.go#L564: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_encrypted_message_gen.go#L573: return fmt.Errorf("unable to encode EncryptedMessageClass as nil")
tl_error_gen.go#L116: return fmt.Errorf("can't encode error#c4b9f9bb as nil")
tl_error_gen.go#L125: return fmt.Errorf("can't encode error#c4b9f9bb as nil")
tl_error_gen.go#L145: return fmt.Errorf("can't decode error#c4b9f9bb to nil")
tl_error_gen.go#L148: return fmt.Errorf("unable to decode error#c4b9f9bb: %w", err)
tl_error_gen.go#L156: return fmt.Errorf("can't decode error#c4b9f9bb to nil")
tl_error_gen.go#L161: return fmt.Errorf("unable to decode error#c4b9f9bb: field code: %w", err)
tl_error_gen.go#L168: return fmt.Errorf("unable to decode error#c4b9f9bb: field text: %w", err)
tl_exported_message_link_gen.go#L116: return fmt.Errorf("can't encode exportedMessageLink#5dab1af4 as nil")
tl_exported_message_link_gen.go#L125: return fmt.Errorf("can't encode exportedMessageLink#5dab1af4 as nil")
tl_exported_message_link_gen.go#L145: return fmt.Errorf("can't decode exportedMessageLink#5dab1af4 to nil")
tl_exported_message_link_gen.go#L148: return fmt.Errorf("unable to decode exportedMessageLink#5dab1af4: %w", err)
tl_exported_message_link_gen.go#L156: return fmt.Errorf("can't decode exportedMessageLink#5dab1af4 to nil")
tl_exported_message_link_gen.go#L161: return fmt.Errorf("unable to decode exportedMessageLink#5dab1af4: field link: %w", err)
tl_exported_message_link_gen.go#L168: return fmt.Errorf("unable to decode exportedMessageLink#5dab1af4: field html: %w", err)
tl_file_hash_gen.go#L126: return fmt.Errorf("can't encode fileHash#6242c773 as nil")
tl_file_hash_gen.go#L135: return fmt.Errorf("can't encode fileHash#6242c773 as nil")
tl_file_hash_gen.go#L161: return fmt.Errorf("can't decode fileHash#6242c773 to nil")
tl_file_hash_gen.go#L164: return fmt.Errorf("unable to decode fileHash#6242c773: %w", err)
tl_file_hash_gen.go#L172: return fmt.Errorf("can't decode fileHash#6242c773 to nil")
tl_file_hash_gen.go#L177: return fmt.Errorf("unable to decode fileHash#6242c773: field offset: %w", err)
tl_file_hash_gen.go#L184: return fmt.Errorf("unable to decode fileHash#6242c773: field limit: %w", err)
tl_file_hash_gen.go#L191: return fmt.Errorf("unable to decode fileHash#6242c773: field hash: %w", err)
tl_file_hash_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_file_hash_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_file_hash_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_file_hash_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_file_hash_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_file_hash_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_file_hash_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_folder_gen.go#L177: return fmt.Errorf("can't encode folder#ff544e65 as nil")
tl_folder_gen.go#L186: return fmt.Errorf("can't encode folder#ff544e65 as nil")
tl_folder_gen.go#L201: return fmt.Errorf("unable to encode folder#ff544e65: field flags: %w", err)
tl_folder_gen.go#L207: return fmt.Errorf("unable to encode folder#ff544e65: field photo is nil")
tl_folder_gen.go#L210: return fmt.Errorf("unable to encode folder#ff544e65: field photo: %w", err)
tl_folder_gen.go#L301: return fmt.Errorf("can't decode folder#ff544e65 to nil")
tl_folder_gen.go#L304: return fmt.Errorf("unable to decode folder#ff544e65: %w", err)
tl_folder_gen.go#L312: return fmt.Errorf("can't decode folder#ff544e65 to nil")
tl_folder_gen.go#L316: return fmt.Errorf("unable to decode folder#ff544e65: field flags: %w", err)
tl_folder_gen.go#L325: return fmt.Errorf("unable to decode folder#ff544e65: field id: %w", err)
tl_folder_gen.go#L332: return fmt.Errorf("unable to decode folder#ff544e65: field title: %w", err)
tl_folder_gen.go#L339: return fmt.Errorf("unable to decode folder#ff544e65: field photo: %w", err)
tl_folder_peer_gen.go#L119: return fmt.Errorf("can't encode folderPeer#e9baa668 as nil")
tl_folder_peer_gen.go#L128: return fmt.Errorf("can't encode folderPeer#e9baa668 as nil")
tl_folder_peer_gen.go#L131: return fmt.Errorf("unable to encode folderPeer#e9baa668: field peer is nil")
tl_folder_peer_gen.go#L134: return fmt.Errorf("unable to encode folderPeer#e9baa668: field peer: %w", err)
tl_folder_peer_gen.go#L153: return fmt.Errorf("can't decode folderPeer#e9baa668 to nil")
tl_folder_peer_gen.go#L156: return fmt.Errorf("unable to decode folderPeer#e9baa668: %w", err)
tl_folder_peer_gen.go#L164: return fmt.Errorf("can't decode folderPeer#e9baa668 to nil")
tl_folder_peer_gen.go#L169: return fmt.Errorf("unable to decode folderPeer#e9baa668: field peer: %w", err)
tl_folder_peer_gen.go#L176: return fmt.Errorf("unable to decode folderPeer#e9baa668: field folder_id: %w", err)
tl_folders_delete_folder_gen.go#L111: return fmt.Errorf("can't encode folders.deleteFolder#1c295881 as nil")
tl_folders_delete_folder_gen.go#L120: return fmt.Errorf("can't encode folders.deleteFolder#1c295881 as nil")
tl_folders_delete_folder_gen.go#L134: return fmt.Errorf("can't decode folders.deleteFolder#1c295881 to nil")
tl_folders_delete_folder_gen.go#L137: return fmt.Errorf("unable to decode folders.deleteFolder#1c295881: %w", err)
tl_folders_delete_folder_gen.go#L145: return fmt.Errorf("can't decode folders.deleteFolder#1c295881 to nil")
tl_folders_delete_folder_gen.go#L150: return fmt.Errorf("unable to decode folders.deleteFolder#1c295881: field folder_id: %w", err)
tl_folders_edit_peer_folders_gen.go#L108: return fmt.Errorf("can't encode folders.editPeerFolders#6847d0ab as nil")
tl_folders_edit_peer_folders_gen.go#L117: return fmt.Errorf("can't encode folders.editPeerFolders#6847d0ab as nil")
tl_folders_edit_peer_folders_gen.go#L122: return fmt.Errorf("unable to encode folders.editPeerFolders#6847d0ab: field folder_peers element with index %d: %w", idx, err)
tl_folders_edit_peer_folders_gen.go#L136: return fmt.Errorf("can't decode folders.editPeerFolders#6847d0ab to nil")
tl_folders_edit_peer_folders_gen.go#L139: return fmt.Errorf("unable to decode folders.editPeerFolders#6847d0ab: %w", err)
tl_folders_edit_peer_folders_gen.go#L147: return fmt.Errorf("can't decode folders.editPeerFolders#6847d0ab to nil")
tl_folders_edit_peer_folders_gen.go#L152: return fmt.Errorf("unable to decode folders.editPeerFolders#6847d0ab: field folder_peers: %w", err)
tl_folders_edit_peer_folders_gen.go#L157: return fmt.Errorf("unable to decode folders.editPeerFolders#6847d0ab: field folder_peers: %w", err)
tl_game_gen.go#L185: return fmt.Errorf("can't encode game#bdf9653b as nil")
tl_game_gen.go#L194: return fmt.Errorf("can't encode game#bdf9653b as nil")
tl_game_gen.go#L200: return fmt.Errorf("unable to encode game#bdf9653b: field flags: %w", err)
tl_game_gen.go#L208: return fmt.Errorf("unable to encode game#bdf9653b: field photo is nil")
tl_game_gen.go#L211: return fmt.Errorf("unable to encode game#bdf9653b: field photo: %w", err)
tl_game_gen.go#L215: return fmt.Errorf("unable to encode game#bdf9653b: field document is nil")
tl_game_gen.go#L218: return fmt.Errorf("unable to encode game#bdf9653b: field document: %w", err)
tl_game_gen.go#L286: return fmt.Errorf("can't decode game#bdf9653b to nil")
tl_game_gen.go#L289: return fmt.Errorf("unable to decode game#bdf9653b: %w", err)
tl_game_gen.go#L297: return fmt.Errorf("can't decode game#bdf9653b to nil")
tl_game_gen.go#L301: return fmt.Errorf("unable to decode game#bdf9653b: field flags: %w", err)
tl_game_gen.go#L307: return fmt.Errorf("unable to decode game#bdf9653b: field id: %w", err)
tl_game_gen.go#L314: return fmt.Errorf("unable to decode game#bdf9653b: field access_hash: %w", err)
tl_game_gen.go#L321: return fmt.Errorf("unable to decode game#bdf9653b: field short_name: %w", err)
tl_game_gen.go#L328: return fmt.Errorf("unable to decode game#bdf9653b: field title: %w", err)
tl_game_gen.go#L335: return fmt.Errorf("unable to decode game#bdf9653b: field description: %w", err)
tl_game_gen.go#L342: return fmt.Errorf("unable to decode game#bdf9653b: field photo: %w", err)
tl_game_gen.go#L349: return fmt.Errorf("unable to decode game#bdf9653b: field document: %w", err)
tl_geo_point_gen.go#L88: return fmt.Errorf("can't encode geoPointEmpty#1117dd5f as nil")
tl_geo_point_gen.go#L97: return fmt.Errorf("can't encode geoPointEmpty#1117dd5f as nil")
tl_geo_point_gen.go#L105: return fmt.Errorf("can't decode geoPointEmpty#1117dd5f to nil")
tl_geo_point_gen.go#L108: return fmt.Errorf("unable to decode geoPointEmpty#1117dd5f: %w", err)
tl_geo_point_gen.go#L116: return fmt.Errorf("can't decode geoPointEmpty#1117dd5f to nil")
tl_geo_point_gen.go#L254: return fmt.Errorf("can't encode geoPoint#b2a2f663 as nil")
tl_geo_point_gen.go#L263: return fmt.Errorf("can't encode geoPoint#b2a2f663 as nil")
tl_geo_point_gen.go#L269: return fmt.Errorf("unable to encode geoPoint#b2a2f663: field flags: %w", err)
tl_geo_point_gen.go#L313: return fmt.Errorf("can't decode geoPoint#b2a2f663 to nil")
tl_geo_point_gen.go#L316: return fmt.Errorf("unable to decode geoPoint#b2a2f663: %w", err)
tl_geo_point_gen.go#L324: return fmt.Errorf("can't decode geoPoint#b2a2f663 to nil")
tl_geo_point_gen.go#L328: return fmt.Errorf("unable to decode geoPoint#b2a2f663: field flags: %w", err)
tl_geo_point_gen.go#L334: return fmt.Errorf("unable to decode geoPoint#b2a2f663: field long: %w", err)
tl_geo_point_gen.go#L341: return fmt.Errorf("unable to decode geoPoint#b2a2f663: field lat: %w", err)
tl_geo_point_gen.go#L348: return fmt.Errorf("unable to decode geoPoint#b2a2f663: field access_hash: %w", err)
tl_geo_point_gen.go#L355: return fmt.Errorf("unable to decode geoPoint#b2a2f663: field accuracy_radius: %w", err)
tl_geo_point_gen.go#L432: return nil, fmt.Errorf("unable to decode GeoPointClass: %w", err)
tl_geo_point_gen.go#L439: return nil, fmt.Errorf("unable to decode GeoPointClass: %w", err)
tl_geo_point_gen.go#L443: return nil, fmt.Errorf("unable to decode GeoPointClass: %w", bin.NewUnexpectedID(id))
tl_geo_point_gen.go#L455: return fmt.Errorf("unable to decode GeoPointBox to nil")
tl_geo_point_gen.go#L459: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_geo_point_gen.go#L468: return fmt.Errorf("unable to encode GeoPointClass as nil")
tl_global_privacy_settings_gen.go#L119: return fmt.Errorf("can't encode globalPrivacySettings#bea2f424 as nil")
tl_global_privacy_settings_gen.go#L128: return fmt.Errorf("can't encode globalPrivacySettings#bea2f424 as nil")
tl_global_privacy_settings_gen.go#L134: return fmt.Errorf("unable to encode globalPrivacySettings#bea2f424: field flags: %w", err)
tl_global_privacy_settings_gen.go#L160: return fmt.Errorf("can't decode globalPrivacySettings#bea2f424 to nil")
tl_global_privacy_settings_gen.go#L163: return fmt.Errorf("unable to decode globalPrivacySettings#bea2f424: %w", err)
tl_global_privacy_settings_gen.go#L171: return fmt.Errorf("can't decode globalPrivacySettings#bea2f424 to nil")
tl_global_privacy_settings_gen.go#L175: return fmt.Errorf("unable to decode globalPrivacySettings#bea2f424: field flags: %w", err)
tl_global_privacy_settings_gen.go#L181: return fmt.Errorf("unable to decode globalPrivacySettings#bea2f424: field archive_and_mute_new_noncontact_peers: %w", err)
tl_group_call_gen.go#L126: return fmt.Errorf("can't encode groupCallDiscarded#7780bcb4 as nil")
tl_group_call_gen.go#L135: return fmt.Errorf("can't encode groupCallDiscarded#7780bcb4 as nil")
tl_group_call_gen.go#L161: return fmt.Errorf("can't decode groupCallDiscarded#7780bcb4 to nil")
tl_group_call_gen.go#L164: return fmt.Errorf("unable to decode groupCallDiscarded#7780bcb4: %w", err)
tl_group_call_gen.go#L172: return fmt.Errorf("can't decode groupCallDiscarded#7780bcb4 to nil")
tl_group_call_gen.go#L177: return fmt.Errorf("unable to decode groupCallDiscarded#7780bcb4: field id: %w", err)
tl_group_call_gen.go#L184: return fmt.Errorf("unable to decode groupCallDiscarded#7780bcb4: field access_hash: %w", err)
tl_group_call_gen.go#L191: return fmt.Errorf("unable to decode groupCallDiscarded#7780bcb4: field duration: %w", err)
tl_group_call_gen.go#L454: return fmt.Errorf("can't encode groupCall#c95c6654 as nil")
tl_group_call_gen.go#L463: return fmt.Errorf("can't encode groupCall#c95c6654 as nil")
tl_group_call_gen.go#L493: return fmt.Errorf("unable to encode groupCall#c95c6654: field flags: %w", err)
tl_group_call_gen.go#L500: return fmt.Errorf("unable to encode groupCall#c95c6654: field params: %w", err)
tl_group_call_gen.go#L681: return fmt.Errorf("can't decode groupCall#c95c6654 to nil")
tl_group_call_gen.go#L684: return fmt.Errorf("unable to decode groupCall#c95c6654: %w", err)
tl_group_call_gen.go#L692: return fmt.Errorf("can't decode groupCall#c95c6654 to nil")
tl_group_call_gen.go#L696: return fmt.Errorf("unable to decode groupCall#c95c6654: field flags: %w", err)
tl_group_call_gen.go#L706: return fmt.Errorf("unable to decode groupCall#c95c6654: field id: %w", err)
tl_group_call_gen.go#L713: return fmt.Errorf("unable to decode groupCall#c95c6654: field access_hash: %w", err)
tl_group_call_gen.go#L720: return fmt.Errorf("unable to decode groupCall#c95c6654: field participants_count: %w", err)
tl_group_call_gen.go#L726: return fmt.Errorf("unable to decode groupCall#c95c6654: field params: %w", err)
tl_group_call_gen.go#L732: return fmt.Errorf("unable to decode groupCall#c95c6654: field title: %w", err)
tl_group_call_gen.go#L739: return fmt.Errorf("unable to decode groupCall#c95c6654: field stream_dc_id: %w", err)
tl_group_call_gen.go#L746: return fmt.Errorf("unable to decode groupCall#c95c6654: field record_start_date: %w", err)
tl_group_call_gen.go#L753: return fmt.Errorf("unable to decode groupCall#c95c6654: field schedule_date: %w", err)
tl_group_call_gen.go#L760: return fmt.Errorf("unable to decode groupCall#c95c6654: field version: %w", err)
tl_group_call_gen.go#L839: return nil, fmt.Errorf("unable to decode GroupCallClass: %w", err)
tl_group_call_gen.go#L846: return nil, fmt.Errorf("unable to decode GroupCallClass: %w", err)
tl_group_call_gen.go#L850: return nil, fmt.Errorf("unable to decode GroupCallClass: %w", bin.NewUnexpectedID(id))
tl_group_call_gen.go#L862: return fmt.Errorf("unable to decode GroupCallBox to nil")
tl_group_call_gen.go#L866: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_group_call_gen.go#L875: return fmt.Errorf("unable to encode GroupCallClass as nil")
tl_group_call_participant_gen.go#L324: return fmt.Errorf("can't encode groupCallParticipant#b96b25ee as nil")
tl_group_call_participant_gen.go#L333: return fmt.Errorf("can't encode groupCallParticipant#b96b25ee as nil")
tl_group_call_participant_gen.go#L378: return fmt.Errorf("unable to encode groupCallParticipant#b96b25ee: field flags: %w", err)
tl_group_call_participant_gen.go#L381: return fmt.Errorf("unable to encode groupCallParticipant#b96b25ee: field peer is nil")
tl_group_call_participant_gen.go#L384: return fmt.Errorf("unable to encode groupCallParticipant#b96b25ee: field peer: %w", err)
tl_group_call_participant_gen.go#L402: return fmt.Errorf("unable to encode groupCallParticipant#b96b25ee: field params: %w", err)
tl_group_call_participant_gen.go#L645: return fmt.Errorf("can't decode groupCallParticipant#b96b25ee to nil")
tl_group_call_participant_gen.go#L648: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: %w", err)
tl_group_call_participant_gen.go#L656: return fmt.Errorf("can't decode groupCallParticipant#b96b25ee to nil")
tl_group_call_participant_gen.go#L660: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field flags: %w", err)
tl_group_call_participant_gen.go#L675: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field peer: %w", err)
tl_group_call_participant_gen.go#L682: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field date: %w", err)
tl_group_call_participant_gen.go#L689: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field active_date: %w", err)
tl_group_call_participant_gen.go#L696: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field source: %w", err)
tl_group_call_participant_gen.go#L703: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field volume: %w", err)
tl_group_call_participant_gen.go#L710: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field about: %w", err)
tl_group_call_participant_gen.go#L717: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field raise_hand_rating: %w", err)
tl_group_call_participant_gen.go#L723: return fmt.Errorf("unable to decode groupCallParticipant#b96b25ee: field params: %w", err)
tl_help_accept_terms_of_service_gen.go#L105: return fmt.Errorf("can't encode help.acceptTermsOfService#ee72f79a as nil")
tl_help_accept_terms_of_service_gen.go#L114: return fmt.Errorf("can't encode help.acceptTermsOfService#ee72f79a as nil")
tl_help_accept_terms_of_service_gen.go#L117: return fmt.Errorf("unable to encode help.acceptTermsOfService#ee72f79a: field id: %w", err)
tl_help_accept_terms_of_service_gen.go#L130: return fmt.Errorf("can't decode help.acceptTermsOfService#ee72f79a to nil")
tl_help_accept_terms_of_service_gen.go#L133: return fmt.Errorf("unable to decode help.acceptTermsOfService#ee72f79a: %w", err)
tl_help_accept_terms_of_service_gen.go#L141: return fmt.Errorf("can't decode help.acceptTermsOfService#ee72f79a to nil")
tl_help_accept_terms_of_service_gen.go#L145: return fmt.Errorf("unable to decode help.acceptTermsOfService#ee72f79a: field id: %w", err)
tl_help_app_update_gen.go#L195: return fmt.Errorf("can't encode help.appUpdate#1da7158f as nil")
tl_help_app_update_gen.go#L204: return fmt.Errorf("can't encode help.appUpdate#1da7158f as nil")
tl_help_app_update_gen.go#L216: return fmt.Errorf("unable to encode help.appUpdate#1da7158f: field flags: %w", err)
tl_help_app_update_gen.go#L224: return fmt.Errorf("unable to encode help.appUpdate#1da7158f: field entities element with index %d is nil", idx)
tl_help_app_update_gen.go#L227: return fmt.Errorf("unable to encode help.appUpdate#1da7158f: field entities element with index %d: %w", idx, err)
tl_help_app_update_gen.go#L232: return fmt.Errorf("unable to encode help.appUpdate#1da7158f: field document is nil")
tl_help_app_update_gen.go#L235: return fmt.Errorf("unable to encode help.appUpdate#1da7158f: field document: %w", err)
tl_help_app_update_gen.go#L318: return fmt.Errorf("can't decode help.appUpdate#1da7158f to nil")
tl_help_app_update_gen.go#L321: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: %w", err)
tl_help_app_update_gen.go#L329: return fmt.Errorf("can't decode help.appUpdate#1da7158f to nil")
tl_help_app_update_gen.go#L333: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: field flags: %w", err)
tl_help_app_update_gen.go#L340: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: field id: %w", err)
tl_help_app_update_gen.go#L347: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: field version: %w", err)
tl_help_app_update_gen.go#L354: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: field text: %w", err)
tl_help_app_update_gen.go#L361: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: field entities: %w", err)
tl_help_app_update_gen.go#L366: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: field entities: %w", err)
tl_help_app_update_gen.go#L374: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: field document: %w", err)
tl_help_app_update_gen.go#L381: return fmt.Errorf("unable to decode help.appUpdate#1da7158f: field url: %w", err)
tl_help_app_update_gen.go#L457: return fmt.Errorf("can't encode help.noAppUpdate#c45a6536 as nil")
tl_help_app_update_gen.go#L466: return fmt.Errorf("can't encode help.noAppUpdate#c45a6536 as nil")
tl_help_app_update_gen.go#L474: return fmt.Errorf("can't decode help.noAppUpdate#c45a6536 to nil")
tl_help_app_update_gen.go#L477: return fmt.Errorf("unable to decode help.noAppUpdate#c45a6536: %w", err)
tl_help_app_update_gen.go#L485: return fmt.Errorf("can't decode help.noAppUpdate#c45a6536 to nil")
tl_help_app_update_gen.go#L547: return nil, fmt.Errorf("unable to decode HelpAppUpdateClass: %w", err)
tl_help_app_update_gen.go#L554: return nil, fmt.Errorf("unable to decode HelpAppUpdateClass: %w", err)
tl_help_app_update_gen.go#L558: return nil, fmt.Errorf("unable to decode HelpAppUpdateClass: %w", bin.NewUnexpectedID(id))
tl_help_app_update_gen.go#L570: return fmt.Errorf("unable to decode HelpAppUpdateBox to nil")
tl_help_app_update_gen.go#L574: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_help_app_update_gen.go#L583: return fmt.Errorf("unable to encode HelpAppUpdateClass as nil")
tl_help_config_simple_gen.go#L126: return fmt.Errorf("can't encode help.configSimple#5a592a6c as nil")
tl_help_config_simple_gen.go#L135: return fmt.Errorf("can't encode help.configSimple#5a592a6c as nil")
tl_help_config_simple_gen.go#L142: return fmt.Errorf("unable to encode help.configSimple#5a592a6c: field rules element with index %d: %w", idx, err)
tl_help_config_simple_gen.go#L166: return fmt.Errorf("can't decode help.configSimple#5a592a6c to nil")
tl_help_config_simple_gen.go#L169: return fmt.Errorf("unable to decode help.configSimple#5a592a6c: %w", err)
tl_help_config_simple_gen.go#L177: return fmt.Errorf("can't decode help.configSimple#5a592a6c to nil")
tl_help_config_simple_gen.go#L182: return fmt.Errorf("unable to decode help.configSimple#5a592a6c: field date: %w", err)
tl_help_config_simple_gen.go#L189: return fmt.Errorf("unable to decode help.configSimple#5a592a6c: field expires: %w", err)
tl_help_config_simple_gen.go#L196: return fmt.Errorf("unable to decode help.configSimple#5a592a6c: field rules: %w", err)
tl_help_config_simple_gen.go#L201: return fmt.Errorf("unable to decode help.configSimple#5a592a6c: field rules: %w", err)
tl_help_countries_list_gen.go#L88: return fmt.Errorf("can't encode help.countriesListNotModified#93cc1f32 as nil")
tl_help_countries_list_gen.go#L97: return fmt.Errorf("can't encode help.countriesListNotModified#93cc1f32 as nil")
tl_help_countries_list_gen.go#L105: return fmt.Errorf("can't decode help.countriesListNotModified#93cc1f32 to nil")
tl_help_countries_list_gen.go#L108: return fmt.Errorf("unable to decode help.countriesListNotModified#93cc1f32: %w", err)
tl_help_countries_list_gen.go#L116: return fmt.Errorf("can't decode help.countriesListNotModified#93cc1f32 to nil")
tl_help_countries_list_gen.go#L221: return fmt.Errorf("can't encode help.countriesList#87d0759e as nil")
tl_help_countries_list_gen.go#L230: return fmt.Errorf("can't encode help.countriesList#87d0759e as nil")
tl_help_countries_list_gen.go#L235: return fmt.Errorf("unable to encode help.countriesList#87d0759e: field countries element with index %d: %w", idx, err)
tl_help_countries_list_gen.go#L255: return fmt.Errorf("can't decode help.countriesList#87d0759e to nil")
tl_help_countries_list_gen.go#L258: return fmt.Errorf("unable to decode help.countriesList#87d0759e: %w", err)
tl_help_countries_list_gen.go#L266: return fmt.Errorf("can't decode help.countriesList#87d0759e to nil")
tl_help_countries_list_gen.go#L271: return fmt.Errorf("unable to decode help.countriesList#87d0759e: field countries: %w", err)
tl_help_countries_list_gen.go#L276: return fmt.Errorf("unable to decode help.countriesList#87d0759e: field countries: %w", err)
tl_help_countries_list_gen.go#L284: return fmt.Errorf("unable to decode help.countriesList#87d0759e: field hash: %w", err)
tl_help_countries_list_gen.go#L361: return nil, fmt.Errorf("unable to decode HelpCountriesListClass: %w", err)
tl_help_countries_list_gen.go#L368: return nil, fmt.Errorf("unable to decode HelpCountriesListClass: %w", err)
tl_help_countries_list_gen.go#L372: return nil, fmt.Errorf("unable to decode HelpCountriesListClass: %w", bin.NewUnexpectedID(id))
tl_help_countries_list_gen.go#L384: return fmt.Errorf("unable to decode HelpCountriesListBox to nil")
tl_help_countries_list_gen.go#L388: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_help_countries_list_gen.go#L397: return fmt.Errorf("unable to encode HelpCountriesListClass as nil")
tl_help_country_code_gen.go#L147: return fmt.Errorf("can't encode help.countryCode#4203c5ef as nil")
tl_help_country_code_gen.go#L156: return fmt.Errorf("can't encode help.countryCode#4203c5ef as nil")
tl_help_country_code_gen.go#L165: return fmt.Errorf("unable to encode help.countryCode#4203c5ef: field flags: %w", err)
tl_help_country_code_gen.go#L221: return fmt.Errorf("can't decode help.countryCode#4203c5ef to nil")
tl_help_country_code_gen.go#L224: return fmt.Errorf("unable to decode help.countryCode#4203c5ef: %w", err)
tl_help_country_code_gen.go#L232: return fmt.Errorf("can't decode help.countryCode#4203c5ef to nil")
tl_help_country_code_gen.go#L236: return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field flags: %w", err)
tl_help_country_code_gen.go#L242: return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field country_code: %w", err)
tl_help_country_code_gen.go#L249: return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field prefixes: %w", err)
tl_help_country_code_gen.go#L254: return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field prefixes: %w", err)
tl_help_country_code_gen.go#L262: return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field patterns: %w", err)
tl_help_country_code_gen.go#L267: return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field patterns: %w", err)
tl_help_country_gen.go#L164: return fmt.Errorf("can't encode help.country#c3878e23 as nil")
tl_help_country_gen.go#L173: return fmt.Errorf("can't encode help.country#c3878e23 as nil")
tl_help_country_gen.go#L182: return fmt.Errorf("unable to encode help.country#c3878e23: field flags: %w", err)
tl_help_country_gen.go#L192: return fmt.Errorf("unable to encode help.country#c3878e23: field country_codes element with index %d: %w", idx, err)
tl_help_country_gen.go#L247: return fmt.Errorf("can't decode help.country#c3878e23 to nil")
tl_help_country_gen.go#L250: return fmt.Errorf("unable to decode help.country#c3878e23: %w", err)
tl_help_country_gen.go#L258: return fmt.Errorf("can't decode help.country#c3878e23 to nil")
tl_help_country_gen.go#L262: return fmt.Errorf("unable to decode help.country#c3878e23: field flags: %w", err)
tl_help_country_gen.go#L269: return fmt.Errorf("unable to decode help.country#c3878e23: field iso2: %w", err)
tl_help_country_gen.go#L276: return fmt.Errorf("unable to decode help.country#c3878e23: field default_name: %w", err)
tl_help_country_gen.go#L283: return fmt.Errorf("unable to decode help.country#c3878e23: field name: %w", err)
tl_help_country_gen.go#L290: return fmt.Errorf("unable to decode help.country#c3878e23: field country_codes: %w", err)
tl_help_country_gen.go#L295: return fmt.Errorf("unable to decode help.country#c3878e23: field country_codes: %w", err)
tl_help_deep_link_info_gen.go#L88: return fmt.Errorf("can't encode help.deepLinkInfoEmpty#66afa166 as nil")
tl_help_deep_link_info_gen.go#L97: return fmt.Errorf("can't encode help.deepLinkInfoEmpty#66afa166 as nil")
tl_help_deep_link_info_gen.go#L105: return fmt.Errorf("can't decode help.deepLinkInfoEmpty#66afa166 to nil")
tl_help_deep_link_info_gen.go#L108: return fmt.Errorf("unable to decode help.deepLinkInfoEmpty#66afa166: %w", err)
tl_help_deep_link_info_gen.go#L116: return fmt.Errorf("can't decode help.deepLinkInfoEmpty#66afa166 to nil")
tl_help_deep_link_info_gen.go#L247: return fmt.Errorf("can't encode help.deepLinkInfo#6a4ee832 as nil")
tl_help_deep_link_info_gen.go#L256: return fmt.Errorf("can't encode help.deepLinkInfo#6a4ee832 as nil")
tl_help_deep_link_info_gen.go#L265: return fmt.Errorf("unable to encode help.deepLinkInfo#6a4ee832: field flags: %w", err)
tl_help_deep_link_info_gen.go#L272: return fmt.Errorf("unable to encode help.deepLinkInfo#6a4ee832: field entities element with index %d is nil", idx)
tl_help_deep_link_info_gen.go#L275: return fmt.Errorf("unable to encode help.deepLinkInfo#6a4ee832: field entities element with index %d: %w", idx, err)
tl_help_deep_link_info_gen.go#L329: return fmt.Errorf("can't decode help.deepLinkInfo#6a4ee832 to nil")
tl_help_deep_link_info_gen.go#L332: return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: %w", err)
tl_help_deep_link_info_gen.go#L340: return fmt.Errorf("can't decode help.deepLinkInfo#6a4ee832 to nil")
tl_help_deep_link_info_gen.go#L344: return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: field flags: %w", err)
tl_help_deep_link_info_gen.go#L351: return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: field message: %w", err)
tl_help_deep_link_info_gen.go#L358: return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: field entities: %w", err)
tl_help_deep_link_info_gen.go#L363: return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: field entities: %w", err)
tl_help_deep_link_info_gen.go#L441: return nil, fmt.Errorf("unable to decode HelpDeepLinkInfoClass: %w", err)
tl_help_deep_link_info_gen.go#L448: return nil, fmt.Errorf("unable to decode HelpDeepLinkInfoClass: %w", err)
tl_help_deep_link_info_gen.go#L452: return nil, fmt.Errorf("unable to decode HelpDeepLinkInfoClass: %w", bin.NewUnexpectedID(id))
tl_help_deep_link_info_gen.go#L464: return fmt.Errorf("unable to decode HelpDeepLinkInfoBox to nil")
tl_help_deep_link_info_gen.go#L468: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_help_deep_link_info_gen.go#L477: return fmt.Errorf("unable to encode HelpDeepLinkInfoClass as nil")
tl_help_dismiss_suggestion_gen.go#L116: return fmt.Errorf("can't encode help.dismissSuggestion#f50dbaa1 as nil")
tl_help_dismiss_suggestion_gen.go#L125: return fmt.Errorf("can't encode help.dismissSuggestion#f50dbaa1 as nil")
tl_help_dismiss_suggestion_gen.go#L128: return fmt.Errorf("unable to encode help.dismissSuggestion#f50dbaa1: field peer is nil")
tl_help_dismiss_suggestion_gen.go#L131: return fmt.Errorf("unable to encode help.dismissSuggestion#f50dbaa1: field peer: %w", err)
tl_help_dismiss_suggestion_gen.go#L150: return fmt.Errorf("can't decode help.dismissSuggestion#f50dbaa1 to nil")
tl_help_dismiss_suggestion_gen.go#L153: return fmt.Errorf("unable to decode help.dismissSuggestion#f50dbaa1: %w", err)
tl_help_dismiss_suggestion_gen.go#L161: return fmt.Errorf("can't decode help.dismissSuggestion#f50dbaa1 to nil")
tl_help_dismiss_suggestion_gen.go#L166: return fmt.Errorf("unable to decode help.dismissSuggestion#f50dbaa1: field peer: %w", err)
tl_help_dismiss_suggestion_gen.go#L173: return fmt.Errorf("unable to decode help.dismissSuggestion#f50dbaa1: field suggestion: %w", err)
tl_help_edit_user_info_gen.go#L130: return fmt.Errorf("can't encode help.editUserInfo#66b91b70 as nil")
tl_help_edit_user_info_gen.go#L139: return fmt.Errorf("can't encode help.editUserInfo#66b91b70 as nil")
tl_help_edit_user_info_gen.go#L142: return fmt.Errorf("unable to encode help.editUserInfo#66b91b70: field user_id is nil")
tl_help_edit_user_info_gen.go#L145: return fmt.Errorf("unable to encode help.editUserInfo#66b91b70: field user_id: %w", err)
tl_help_edit_user_info_gen.go#L151: return fmt.Errorf("unable to encode help.editUserInfo#66b91b70: field entities element with index %d is nil", idx)
tl_help_edit_user_info_gen.go#L154: return fmt.Errorf("unable to encode help.editUserInfo#66b91b70: field entities element with index %d: %w", idx, err)
tl_help_edit_user_info_gen.go#L183: return fmt.Errorf("can't decode help.editUserInfo#66b91b70 to nil")
tl_help_edit_user_info_gen.go#L186: return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: %w", err)
tl_help_edit_user_info_gen.go#L194: return fmt.Errorf("can't decode help.editUserInfo#66b91b70 to nil")
tl_help_edit_user_info_gen.go#L199: return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: field user_id: %w", err)
tl_help_edit_user_info_gen.go#L206: return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: field message: %w", err)
tl_help_edit_user_info_gen.go#L213: return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: field entities: %w", err)
tl_help_edit_user_info_gen.go#L218: return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: field entities: %w", err)
tl_help_get_app_changelog_gen.go#L111: return fmt.Errorf("can't encode help.getAppChangelog#9010ef6f as nil")
tl_help_get_app_changelog_gen.go#L120: return fmt.Errorf("can't encode help.getAppChangelog#9010ef6f as nil")
tl_help_get_app_changelog_gen.go#L134: return fmt.Errorf("can't decode help.getAppChangelog#9010ef6f to nil")
tl_help_get_app_changelog_gen.go#L137: return fmt.Errorf("unable to decode help.getAppChangelog#9010ef6f: %w", err)
tl_help_get_app_changelog_gen.go#L145: return fmt.Errorf("can't decode help.getAppChangelog#9010ef6f to nil")
tl_help_get_app_changelog_gen.go#L150: return fmt.Errorf("unable to decode help.getAppChangelog#9010ef6f: field prev_app_version: %w", err)
tl_help_get_app_config_gen.go#L91: return fmt.Errorf("can't encode help.getAppConfig#98914110 as nil")
tl_help_get_app_config_gen.go#L100: return fmt.Errorf("can't encode help.getAppConfig#98914110 as nil")
tl_help_get_app_config_gen.go#L108: return fmt.Errorf("can't decode help.getAppConfig#98914110 to nil")
tl_help_get_app_config_gen.go#L111: return fmt.Errorf("unable to decode help.getAppConfig#98914110: %w", err)
tl_help_get_app_config_gen.go#L119: return fmt.Errorf("can't decode help.getAppConfig#98914110 to nil")
tl_help_get_app_update_gen.go#L105: return fmt.Errorf("can't encode help.getAppUpdate#522d5a7d as nil")
tl_help_get_app_update_gen.go#L114: return fmt.Errorf("can't encode help.getAppUpdate#522d5a7d as nil")
tl_help_get_app_update_gen.go#L128: return fmt.Errorf("can't decode help.getAppUpdate#522d5a7d to nil")
tl_help_get_app_update_gen.go#L131: return fmt.Errorf("unable to decode help.getAppUpdate#522d5a7d: %w", err)
tl_help_get_app_update_gen.go#L139: return fmt.Errorf("can't decode help.getAppUpdate#522d5a7d to nil")
tl_help_get_app_update_gen.go#L144: return fmt.Errorf("unable to decode help.getAppUpdate#522d5a7d: field source: %w", err)
tl_help_get_cdn_config_gen.go#L91: return fmt.Errorf("can't encode help.getCdnConfig#52029342 as nil")
tl_help_get_cdn_config_gen.go#L100: return fmt.Errorf("can't encode help.getCdnConfig#52029342 as nil")
tl_help_get_cdn_config_gen.go#L108: return fmt.Errorf("can't decode help.getCdnConfig#52029342 to nil")
tl_help_get_cdn_config_gen.go#L111: return fmt.Errorf("unable to decode help.getCdnConfig#52029342: %w", err)
tl_help_get_cdn_config_gen.go#L119: return fmt.Errorf("can't decode help.getCdnConfig#52029342 to nil")
tl_help_get_config_gen.go#L88: return fmt.Errorf("can't encode help.getConfig#c4f9186b as nil")
tl_help_get_config_gen.go#L97: return fmt.Errorf("can't encode help.getConfig#c4f9186b as nil")
tl_help_get_config_gen.go#L105: return fmt.Errorf("can't decode help.getConfig#c4f9186b to nil")
tl_help_get_config_gen.go#L108: return fmt.Errorf("unable to decode help.getConfig#c4f9186b: %w", err)
tl_help_get_config_gen.go#L116: return fmt.Errorf("can't decode help.getConfig#c4f9186b to nil")
tl_help_get_countries_list_gen.go#L119: return fmt.Errorf("can't encode help.getCountriesList#735787a8 as nil")
tl_help_get_countries_list_gen.go#L128: return fmt.Errorf("can't encode help.getCountriesList#735787a8 as nil")
tl_help_get_countries_list_gen.go#L148: return fmt.Errorf("can't decode help.getCountriesList#735787a8 to nil")
tl_help_get_countries_list_gen.go#L151: return fmt.Errorf("unable to decode help.getCountriesList#735787a8: %w", err)
tl_help_get_countries_list_gen.go#L159: return fmt.Errorf("can't decode help.getCountriesList#735787a8 to nil")
tl_help_get_countries_list_gen.go#L164: return fmt.Errorf("unable to decode help.getCountriesList#735787a8: field lang_code: %w", err)
tl_help_get_countries_list_gen.go#L171: return fmt.Errorf("unable to decode help.getCountriesList#735787a8: field hash: %w", err)
tl_help_get_deep_link_info_gen.go#L105: return fmt.Errorf("can't encode help.getDeepLinkInfo#3fedc75f as nil")
tl_help_get_deep_link_info_gen.go#L114: return fmt.Errorf("can't encode help.getDeepLinkInfo#3fedc75f as nil")
tl_help_get_deep_link_info_gen.go#L128: return fmt.Errorf("can't decode help.getDeepLinkInfo#3fedc75f to nil")
tl_help_get_deep_link_info_gen.go#L131: return fmt.Errorf("unable to decode help.getDeepLinkInfo#3fedc75f: %w", err)
tl_help_get_deep_link_info_gen.go#L139: return fmt.Errorf("can't decode help.getDeepLinkInfo#3fedc75f to nil")
tl_help_get_deep_link_info_gen.go#L144: return fmt.Errorf("unable to decode help.getDeepLinkInfo#3fedc75f: field path: %w", err)
tl_help_get_invite_text_gen.go#L88: return fmt.Errorf("can't encode help.getInviteText#4d392343 as nil")
tl_help_get_invite_text_gen.go#L97: return fmt.Errorf("can't encode help.getInviteText#4d392343 as nil")
tl_help_get_invite_text_gen.go#L105: return fmt.Errorf("can't decode help.getInviteText#4d392343 to nil")
tl_help_get_invite_text_gen.go#L108: return fmt.Errorf("unable to decode help.getInviteText#4d392343: %w", err)
tl_help_get_invite_text_gen.go#L116: return fmt.Errorf("can't decode help.getInviteText#4d392343 to nil")
tl_help_get_nearest_dc_gen.go#L88: return fmt.Errorf("can't encode help.getNearestDc#1fb33026 as nil")
tl_help_get_nearest_dc_gen.go#L97: return fmt.Errorf("can't encode help.getNearestDc#1fb33026 as nil")
tl_help_get_nearest_dc_gen.go#L105: return fmt.Errorf("can't decode help.getNearestDc#1fb33026 to nil")
tl_help_get_nearest_dc_gen.go#L108: return fmt.Errorf("unable to decode help.getNearestDc#1fb33026: %w", err)
tl_help_get_nearest_dc_gen.go#L116: return fmt.Errorf("can't decode help.getNearestDc#1fb33026 to nil")
tl_help_get_passport_config_gen.go#L111: return fmt.Errorf("can't encode help.getPassportConfig#c661ad08 as nil")
tl_help_get_passport_config_gen.go#L120: return fmt.Errorf("can't encode help.getPassportConfig#c661ad08 as nil")
tl_help_get_passport_config_gen.go#L134: return fmt.Errorf("can't decode help.getPassportConfig#c661ad08 to nil")
tl_help_get_passport_config_gen.go#L137: return fmt.Errorf("unable to decode help.getPassportConfig#c661ad08: %w", err)
tl_help_get_passport_config_gen.go#L145: return fmt.Errorf("can't decode help.getPassportConfig#c661ad08 to nil")
tl_help_get_passport_config_gen.go#L150: return fmt.Errorf("unable to decode help.getPassportConfig#c661ad08: field hash: %w", err)
tl_help_get_promo_data_gen.go#L88: return fmt.Errorf("can't encode help.getPromoData#c0977421 as nil")
tl_help_get_promo_data_gen.go#L97: return fmt.Errorf("can't encode help.getPromoData#c0977421 as nil")
tl_help_get_promo_data_gen.go#L105: return fmt.Errorf("can't decode help.getPromoData#c0977421 to nil")
tl_help_get_promo_data_gen.go#L108: return fmt.Errorf("unable to decode help.getPromoData#c0977421: %w", err)
tl_help_get_promo_data_gen.go#L116: return fmt.Errorf("can't decode help.getPromoData#c0977421 to nil")
tl_help_get_recent_me_urls_gen.go#L105: return fmt.Errorf("can't encode help.getRecentMeUrls#3dc0f114 as nil")
tl_help_get_recent_me_urls_gen.go#L114: return fmt.Errorf("can't encode help.getRecentMeUrls#3dc0f114 as nil")
tl_help_get_recent_me_urls_gen.go#L128: return fmt.Errorf("can't decode help.getRecentMeUrls#3dc0f114 to nil")
tl_help_get_recent_me_urls_gen.go#L131: return fmt.Errorf("unable to decode help.getRecentMeUrls#3dc0f114: %w", err)
tl_help_get_recent_me_urls_gen.go#L139: return fmt.Errorf("can't decode help.getRecentMeUrls#3dc0f114 to nil")
tl_help_get_recent_me_urls_gen.go#L144: return fmt.Errorf("unable to decode help.getRecentMeUrls#3dc0f114: field referer: %w", err)
tl_help_get_support_gen.go#L88: return fmt.Errorf("can't encode help.getSupport#9cdf08cd as nil")
tl_help_get_support_gen.go#L97: return fmt.Errorf("can't encode help.getSupport#9cdf08cd as nil")
tl_help_get_support_gen.go#L105: return fmt.Errorf("can't decode help.getSupport#9cdf08cd to nil")
tl_help_get_support_gen.go#L108: return fmt.Errorf("unable to decode help.getSupport#9cdf08cd: %w", err)
tl_help_get_support_gen.go#L116: return fmt.Errorf("can't decode help.getSupport#9cdf08cd to nil")
tl_help_get_support_name_gen.go#L88: return fmt.Errorf("can't encode help.getSupportName#d360e72c as nil")
tl_help_get_support_name_gen.go#L97: return fmt.Errorf("can't encode help.getSupportName#d360e72c as nil")
tl_help_get_support_name_gen.go#L105: return fmt.Errorf("can't decode help.getSupportName#d360e72c to nil")
tl_help_get_support_name_gen.go#L108: return fmt.Errorf("unable to decode help.getSupportName#d360e72c: %w", err)
tl_help_get_support_name_gen.go#L116: return fmt.Errorf("can't decode help.getSupportName#d360e72c to nil")
tl_help_get_terms_of_service_update_gen.go#L88: return fmt.Errorf("can't encode help.getTermsOfServiceUpdate#2ca51fd1 as nil")
tl_help_get_terms_of_service_update_gen.go#L97: return fmt.Errorf("can't encode help.getTermsOfServiceUpdate#2ca51fd1 as nil")
tl_help_get_terms_of_service_update_gen.go#L105: return fmt.Errorf("can't decode help.getTermsOfServiceUpdate#2ca51fd1 to nil")
tl_help_get_terms_of_service_update_gen.go#L108: return fmt.Errorf("unable to decode help.getTermsOfServiceUpdate#2ca51fd1: %w", err)
tl_help_get_terms_of_service_update_gen.go#L116: return fmt.Errorf("can't decode help.getTermsOfServiceUpdate#2ca51fd1 to nil")
tl_help_get_user_info_gen.go#L105: return fmt.Errorf("can't encode help.getUserInfo#38a08d3 as nil")
tl_help_get_user_info_gen.go#L114: return fmt.Errorf("can't encode help.getUserInfo#38a08d3 as nil")
tl_help_get_user_info_gen.go#L117: return fmt.Errorf("unable to encode help.getUserInfo#38a08d3: field user_id is nil")
tl_help_get_user_info_gen.go#L120: return fmt.Errorf("unable to encode help.getUserInfo#38a08d3: field user_id: %w", err)
tl_help_get_user_info_gen.go#L133: return fmt.Errorf("can't decode help.getUserInfo#38a08d3 to nil")
tl_help_get_user_info_gen.go#L136: return fmt.Errorf("unable to decode help.getUserInfo#38a08d3: %w", err)
tl_help_get_user_info_gen.go#L144: return fmt.Errorf("can't decode help.getUserInfo#38a08d3 to nil")
tl_help_get_user_info_gen.go#L149: return fmt.Errorf("unable to decode help.getUserInfo#38a08d3: field user_id: %w", err)
tl_help_hide_promo_data_gen.go#L105: return fmt.Errorf("can't encode help.hidePromoData#1e251c95 as nil")
tl_help_hide_promo_data_gen.go#L114: return fmt.Errorf("can't encode help.hidePromoData#1e251c95 as nil")
tl_help_hide_promo_data_gen.go#L117: return fmt.Errorf("unable to encode help.hidePromoData#1e251c95: field peer is nil")
tl_help_hide_promo_data_gen.go#L120: return fmt.Errorf("unable to encode help.hidePromoData#1e251c95: field peer: %w", err)
tl_help_hide_promo_data_gen.go#L133: return fmt.Errorf("can't decode help.hidePromoData#1e251c95 to nil")
tl_help_hide_promo_data_gen.go#L136: return fmt.Errorf("unable to decode help.hidePromoData#1e251c95: %w", err)
tl_help_hide_promo_data_gen.go#L144: return fmt.Errorf("can't decode help.hidePromoData#1e251c95 to nil")
tl_help_hide_promo_data_gen.go#L149: return fmt.Errorf("unable to decode help.hidePromoData#1e251c95: field peer: %w", err)
tl_help_invite_text_gen.go#L105: return fmt.Errorf("can't encode help.inviteText#18cb9f78 as nil")
tl_help_invite_text_gen.go#L114: return fmt.Errorf("can't encode help.inviteText#18cb9f78 as nil")
tl_help_invite_text_gen.go#L128: return fmt.Errorf("can't decode help.inviteText#18cb9f78 to nil")
tl_help_invite_text_gen.go#L131: return fmt.Errorf("unable to decode help.inviteText#18cb9f78: %w", err)
tl_help_invite_text_gen.go#L139: return fmt.Errorf("can't decode help.inviteText#18cb9f78 to nil")
tl_help_invite_text_gen.go#L144: return fmt.Errorf("unable to decode help.inviteText#18cb9f78: field message: %w", err)
tl_help_passport_config_gen.go#L88: return fmt.Errorf("can't encode help.passportConfigNotModified#bfb9f457 as nil")
tl_help_passport_config_gen.go#L97: return fmt.Errorf("can't encode help.passportConfigNotModified#bfb9f457 as nil")
tl_help_passport_config_gen.go#L105: return fmt.Errorf("can't decode help.passportConfigNotModified#bfb9f457 to nil")
tl_help_passport_config_gen.go#L108: return fmt.Errorf("unable to decode help.passportConfigNotModified#bfb9f457: %w", err)
tl_help_passport_config_gen.go#L116: return fmt.Errorf("can't decode help.passportConfigNotModified#bfb9f457 to nil")
tl_help_passport_config_gen.go#L224: return fmt.Errorf("can't encode help.passportConfig#a098d6af as nil")
tl_help_passport_config_gen.go#L233: return fmt.Errorf("can't encode help.passportConfig#a098d6af as nil")
tl_help_passport_config_gen.go#L237: return fmt.Errorf("unable to encode help.passportConfig#a098d6af: field countries_langs: %w", err)
tl_help_passport_config_gen.go#L255: return fmt.Errorf("can't decode help.passportConfig#a098d6af to nil")
tl_help_passport_config_gen.go#L258: return fmt.Errorf("unable to decode help.passportConfig#a098d6af: %w", err)
tl_help_passport_config_gen.go#L266: return fmt.Errorf("can't decode help.passportConfig#a098d6af to nil")
tl_help_passport_config_gen.go#L271: return fmt.Errorf("unable to decode help.passportConfig#a098d6af: field hash: %w", err)
tl_help_passport_config_gen.go#L277: return fmt.Errorf("unable to decode help.passportConfig#a098d6af: field countries_langs: %w", err)
tl_help_passport_config_gen.go#L353: return nil, fmt.Errorf("unable to decode HelpPassportConfigClass: %w", err)
tl_help_passport_config_gen.go#L360: return nil, fmt.Errorf("unable to decode HelpPassportConfigClass: %w", err)
tl_help_passport_config_gen.go#L364: return nil, fmt.Errorf("unable to decode HelpPassportConfigClass: %w", bin.NewUnexpectedID(id))
tl_help_passport_config_gen.go#L376: return fmt.Errorf("unable to decode HelpPassportConfigBox to nil")
tl_help_passport_config_gen.go#L380: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_help_passport_config_gen.go#L389: return fmt.Errorf("unable to encode HelpPassportConfigClass as nil")
tl_help_promo_data_gen.go#L105: return fmt.Errorf("can't encode help.promoDataEmpty#98f6ac75 as nil")
tl_help_promo_data_gen.go#L114: return fmt.Errorf("can't encode help.promoDataEmpty#98f6ac75 as nil")
tl_help_promo_data_gen.go#L128: return fmt.Errorf("can't decode help.promoDataEmpty#98f6ac75 to nil")
tl_help_promo_data_gen.go#L131: return fmt.Errorf("unable to decode help.promoDataEmpty#98f6ac75: %w", err)
tl_help_promo_data_gen.go#L139: return fmt.Errorf("can't decode help.promoDataEmpty#98f6ac75 to nil")
tl_help_promo_data_gen.go#L144: return fmt.Errorf("unable to decode help.promoDataEmpty#98f6ac75: field expires: %w", err)
tl_help_promo_data_gen.go#L324: return fmt.Errorf("can't encode help.promoData#8c39793f as nil")
tl_help_promo_data_gen.go#L333: return fmt.Errorf("can't encode help.promoData#8c39793f as nil")
tl_help_promo_data_gen.go#L345: return fmt.Errorf("unable to encode help.promoData#8c39793f: field flags: %w", err)
tl_help_promo_data_gen.go#L349: return fmt.Errorf("unable to encode help.promoData#8c39793f: field peer is nil")
tl_help_promo_data_gen.go#L352: return fmt.Errorf("unable to encode help.promoData#8c39793f: field peer: %w", err)
tl_help_promo_data_gen.go#L357: return fmt.Errorf("unable to encode help.promoData#8c39793f: field chats element with index %d is nil", idx)
tl_help_promo_data_gen.go#L360: return fmt.Errorf("unable to encode help.promoData#8c39793f: field chats element with index %d: %w", idx, err)
tl_help_promo_data_gen.go#L366: return fmt.Errorf("unable to encode help.promoData#8c39793f: field users element with index %d is nil", idx)
tl_help_promo_data_gen.go#L369: return fmt.Errorf("unable to encode help.promoData#8c39793f: field users element with index %d: %w", idx, err)
tl_help_promo_data_gen.go#L460: return fmt.Errorf("can't decode help.promoData#8c39793f to nil")
tl_help_promo_data_gen.go#L463: return fmt.Errorf("unable to decode help.promoData#8c39793f: %w", err)
tl_help_promo_data_gen.go#L471: return fmt.Errorf("can't decode help.promoData#8c39793f to nil")
tl_help_promo_data_gen.go#L475: return fmt.Errorf("unable to decode help.promoData#8c39793f: field flags: %w", err)
tl_help_promo_data_gen.go#L482: return fmt.Errorf("unable to decode help.promoData#8c39793f: field expires: %w", err)
tl_help_promo_data_gen.go#L489: return fmt.Errorf("unable to decode help.promoData#8c39793f: field peer: %w", err)
tl_help_promo_data_gen.go#L496: return fmt.Errorf("unable to decode help.promoData#8c39793f: field chats: %w", err)
tl_help_promo_data_gen.go#L501: return fmt.Errorf("unable to decode help.promoData#8c39793f: field chats: %w", err)
tl_help_promo_data_gen.go#L509: return fmt.Errorf("unable to decode help.promoData#8c39793f: field users: %w", err)
tl_help_promo_data_gen.go#L514: return fmt.Errorf("unable to decode help.promoData#8c39793f: field users: %w", err)
tl_help_promo_data_gen.go#L522: return fmt.Errorf("unable to decode help.promoData#8c39793f: field psa_type: %w", err)
tl_help_promo_data_gen.go#L529: return fmt.Errorf("unable to decode help.promoData#8c39793f: field psa_message: %w", err)
tl_help_promo_data_gen.go#L609: return nil, fmt.Errorf("unable to decode HelpPromoDataClass: %w", err)
tl_help_promo_data_gen.go#L616: return nil, fmt.Errorf("unable to decode HelpPromoDataClass: %w", err)
tl_help_promo_data_gen.go#L620: return nil, fmt.Errorf("unable to decode HelpPromoDataClass: %w", bin.NewUnexpectedID(id))
tl_help_promo_data_gen.go#L632: return fmt.Errorf("unable to decode HelpPromoDataBox to nil")
tl_help_promo_data_gen.go#L636: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_help_promo_data_gen.go#L645: return fmt.Errorf("unable to encode HelpPromoDataClass as nil")
tl_help_recent_me_urls_gen.go#L127: return fmt.Errorf("can't encode help.recentMeUrls#e0310d7 as nil")
tl_help_recent_me_urls_gen.go#L136: return fmt.Errorf("can't encode help.recentMeUrls#e0310d7 as nil")
tl_help_recent_me_urls_gen.go#L141: return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field urls element with index %d is nil", idx)
tl_help_recent_me_urls_gen.go#L144: return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field urls element with index %d: %w", idx, err)
tl_help_recent_me_urls_gen.go#L150: return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field chats element with index %d is nil", idx)
tl_help_recent_me_urls_gen.go#L153: return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field chats element with index %d: %w", idx, err)
tl_help_recent_me_urls_gen.go#L159: return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field users element with index %d is nil", idx)
tl_help_recent_me_urls_gen.go#L162: return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field users element with index %d: %w", idx, err)
tl_help_recent_me_urls_gen.go#L201: return fmt.Errorf("can't decode help.recentMeUrls#e0310d7 to nil")
tl_help_recent_me_urls_gen.go#L204: return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: %w", err)
tl_help_recent_me_urls_gen.go#L212: return fmt.Errorf("can't decode help.recentMeUrls#e0310d7 to nil")
tl_help_recent_me_urls_gen.go#L217: return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field urls: %w", err)
tl_help_recent_me_urls_gen.go#L222: return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field urls: %w", err)
tl_help_recent_me_urls_gen.go#L230: return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field chats: %w", err)
tl_help_recent_me_urls_gen.go#L235: return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field chats: %w", err)
tl_help_recent_me_urls_gen.go#L243: return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field users: %w", err)
tl_help_recent_me_urls_gen.go#L248: return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field users: %w", err)
tl_help_save_app_log_gen.go#L105: return fmt.Errorf("can't encode help.saveAppLog#6f02f748 as nil")
tl_help_save_app_log_gen.go#L114: return fmt.Errorf("can't encode help.saveAppLog#6f02f748 as nil")
tl_help_save_app_log_gen.go#L119: return fmt.Errorf("unable to encode help.saveAppLog#6f02f748: field events element with index %d: %w", idx, err)
tl_help_save_app_log_gen.go#L133: return fmt.Errorf("can't decode help.saveAppLog#6f02f748 to nil")
tl_help_save_app_log_gen.go#L136: return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: %w", err)
tl_help_save_app_log_gen.go#L144: return fmt.Errorf("can't decode help.saveAppLog#6f02f748 to nil")
tl_help_save_app_log_gen.go#L149: return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: field events: %w", err)
tl_help_save_app_log_gen.go#L154: return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: field events: %w", err)
tl_help_set_bot_updates_status_gen.go#L117: return fmt.Errorf("can't encode help.setBotUpdatesStatus#ec22cfcd as nil")
tl_help_set_bot_updates_status_gen.go#L126: return fmt.Errorf("can't encode help.setBotUpdatesStatus#ec22cfcd as nil")
tl_help_set_bot_updates_status_gen.go#L146: return fmt.Errorf("can't decode help.setBotUpdatesStatus#ec22cfcd to nil")
tl_help_set_bot_updates_status_gen.go#L149: return fmt.Errorf("unable to decode help.setBotUpdatesStatus#ec22cfcd: %w", err)
tl_help_set_bot_updates_status_gen.go#L157: return fmt.Errorf("can't decode help.setBotUpdatesStatus#ec22cfcd to nil")
tl_help_set_bot_updates_status_gen.go#L162: return fmt.Errorf("unable to decode help.setBotUpdatesStatus#ec22cfcd: field pending_updates_count: %w", err)
tl_help_set_bot_updates_status_gen.go#L169: return fmt.Errorf("unable to decode help.setBotUpdatesStatus#ec22cfcd: field message: %w", err)
tl_help_support_gen.go#L116: return fmt.Errorf("can't encode help.support#17c6b5f6 as nil")
tl_help_support_gen.go#L125: return fmt.Errorf("can't encode help.support#17c6b5f6 as nil")
tl_help_support_gen.go#L129: return fmt.Errorf("unable to encode help.support#17c6b5f6: field user is nil")
tl_help_support_gen.go#L132: return fmt.Errorf("unable to encode help.support#17c6b5f6: field user: %w", err)
tl_help_support_gen.go#L155: return fmt.Errorf("can't decode help.support#17c6b5f6 to nil")
tl_help_support_gen.go#L158: return fmt.Errorf("unable to decode help.support#17c6b5f6: %w", err)
tl_help_support_gen.go#L166: return fmt.Errorf("can't decode help.support#17c6b5f6 to nil")
tl_help_support_gen.go#L171: return fmt.Errorf("unable to decode help.support#17c6b5f6: field phone_number: %w", err)
tl_help_support_gen.go#L178: return fmt.Errorf("unable to decode help.support#17c6b5f6: field user: %w", err)
tl_help_support_name_gen.go#L105: return fmt.Errorf("can't encode help.supportName#8c05f1c9 as nil")
tl_help_support_name_gen.go#L114: return fmt.Errorf("can't encode help.supportName#8c05f1c9 as nil")
tl_help_support_name_gen.go#L128: return fmt.Errorf("can't decode help.supportName#8c05f1c9 to nil")
tl_help_support_name_gen.go#L131: return fmt.Errorf("unable to decode help.supportName#8c05f1c9: %w", err)
tl_help_support_name_gen.go#L139: return fmt.Errorf("can't decode help.supportName#8c05f1c9 to nil")
tl_help_support_name_gen.go#L144: return fmt.Errorf("unable to decode help.supportName#8c05f1c9: field name: %w", err)
tl_help_terms_of_service_gen.go#L168: return fmt.Errorf("can't encode help.termsOfService#780a0310 as nil")
tl_help_terms_of_service_gen.go#L177: return fmt.Errorf("can't encode help.termsOfService#780a0310 as nil")
tl_help_terms_of_service_gen.go#L186: return fmt.Errorf("unable to encode help.termsOfService#780a0310: field flags: %w", err)
tl_help_terms_of_service_gen.go#L189: return fmt.Errorf("unable to encode help.termsOfService#780a0310: field id: %w", err)
tl_help_terms_of_service_gen.go#L195: return fmt.Errorf("unable to encode help.termsOfService#780a0310: field entities element with index %d is nil", idx)
tl_help_terms_of_service_gen.go#L198: return fmt.Errorf("unable to encode help.termsOfService#780a0310: field entities element with index %d: %w", idx, err)
tl_help_terms_of_service_gen.go#L261: return fmt.Errorf("can't decode help.termsOfService#780a0310 to nil")
tl_help_terms_of_service_gen.go#L264: return fmt.Errorf("unable to decode help.termsOfService#780a0310: %w", err)
tl_help_terms_of_service_gen.go#L272: return fmt.Errorf("can't decode help.termsOfService#780a0310 to nil")
tl_help_terms_of_service_gen.go#L276: return fmt.Errorf("unable to decode help.termsOfService#780a0310: field flags: %w", err)
tl_help_terms_of_service_gen.go#L282: return fmt.Errorf("unable to decode help.termsOfService#780a0310: field id: %w", err)
tl_help_terms_of_service_gen.go#L288: return fmt.Errorf("unable to decode help.termsOfService#780a0310: field text: %w", err)
tl_help_terms_of_service_gen.go#L295: return fmt.Errorf("unable to decode help.termsOfService#780a0310: field entities: %w", err)
tl_help_terms_of_service_gen.go#L300: return fmt.Errorf("unable to decode help.termsOfService#780a0310: field entities: %w", err)
tl_help_terms_of_service_gen.go#L308: return fmt.Errorf("unable to decode help.termsOfService#780a0310: field min_age_confirm: %w", err)
tl_help_terms_of_service_update_gen.go#L109: return fmt.Errorf("can't encode help.termsOfServiceUpdateEmpty#e3309f7f as nil")
tl_help_terms_of_service_update_gen.go#L118: return fmt.Errorf("can't encode help.termsOfServiceUpdateEmpty#e3309f7f as nil")
tl_help_terms_of_service_update_gen.go#L132: return fmt.Errorf("can't decode help.termsOfServiceUpdateEmpty#e3309f7f to nil")
tl_help_terms_of_service_update_gen.go#L135: return fmt.Errorf("unable to decode help.termsOfServiceUpdateEmpty#e3309f7f: %w", err)
tl_help_terms_of_service_update_gen.go#L143: return fmt.Errorf("can't decode help.termsOfServiceUpdateEmpty#e3309f7f to nil")
tl_help_terms_of_service_update_gen.go#L148: return fmt.Errorf("unable to decode help.termsOfServiceUpdateEmpty#e3309f7f: field expires: %w", err)
tl_help_terms_of_service_update_gen.go#L261: return fmt.Errorf("can't encode help.termsOfServiceUpdate#28ecf961 as nil")
tl_help_terms_of_service_update_gen.go#L270: return fmt.Errorf("can't encode help.termsOfServiceUpdate#28ecf961 as nil")
tl_help_terms_of_service_update_gen.go#L274: return fmt.Errorf("unable to encode help.termsOfServiceUpdate#28ecf961: field terms_of_service: %w", err)
tl_help_terms_of_service_update_gen.go#L292: return fmt.Errorf("can't decode help.termsOfServiceUpdate#28ecf961 to nil")
tl_help_terms_of_service_update_gen.go#L295: return fmt.Errorf("unable to decode help.termsOfServiceUpdate#28ecf961: %w", err)
tl_help_terms_of_service_update_gen.go#L303: return fmt.Errorf("can't decode help.termsOfServiceUpdate#28ecf961 to nil")
tl_help_terms_of_service_update_gen.go#L308: return fmt.Errorf("unable to decode help.termsOfServiceUpdate#28ecf961: field expires: %w", err)
tl_help_terms_of_service_update_gen.go#L314: return fmt.Errorf("unable to decode help.termsOfServiceUpdate#28ecf961: field terms_of_service: %w", err)
tl_help_terms_of_service_update_gen.go#L397: return nil, fmt.Errorf("unable to decode HelpTermsOfServiceUpdateClass: %w", err)
tl_help_terms_of_service_update_gen.go#L404: return nil, fmt.Errorf("unable to decode HelpTermsOfServiceUpdateClass: %w", err)
tl_help_terms_of_service_update_gen.go#L408: return nil, fmt.Errorf("unable to decode HelpTermsOfServiceUpdateClass: %w", bin.NewUnexpectedID(id))
tl_help_terms_of_service_update_gen.go#L420: return fmt.Errorf("unable to decode HelpTermsOfServiceUpdateBox to nil")
tl_help_terms_of_service_update_gen.go#L424: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_help_terms_of_service_update_gen.go#L433: return fmt.Errorf("unable to encode HelpTermsOfServiceUpdateClass as nil")
tl_help_user_info_gen.go#L88: return fmt.Errorf("can't encode help.userInfoEmpty#f3ae2eed as nil")
tl_help_user_info_gen.go#L97: return fmt.Errorf("can't encode help.userInfoEmpty#f3ae2eed as nil")
tl_help_user_info_gen.go#L105: return fmt.Errorf("can't decode help.userInfoEmpty#f3ae2eed to nil")
tl_help_user_info_gen.go#L108: return fmt.Errorf("unable to decode help.userInfoEmpty#f3ae2eed: %w", err)
tl_help_user_info_gen.go#L116: return fmt.Errorf("can't decode help.userInfoEmpty#f3ae2eed to nil")
tl_help_user_info_gen.go#L243: return fmt.Errorf("can't encode help.userInfo#1eb3758 as nil")
tl_help_user_info_gen.go#L252: return fmt.Errorf("can't encode help.userInfo#1eb3758 as nil")
tl_help_user_info_gen.go#L258: return fmt.Errorf("unable to encode help.userInfo#1eb3758: field entities element with index %d is nil", idx)
tl_help_user_info_gen.go#L261: return fmt.Errorf("unable to encode help.userInfo#1eb3758: field entities element with index %d: %w", idx, err)
tl_help_user_info_gen.go#L297: return fmt.Errorf("can't decode help.userInfo#1eb3758 to nil")
tl_help_user_info_gen.go#L300: return fmt.Errorf("unable to decode help.userInfo#1eb3758: %w", err)
tl_help_user_info_gen.go#L308: return fmt.Errorf("can't decode help.userInfo#1eb3758 to nil")
tl_help_user_info_gen.go#L313: return fmt.Errorf("unable to decode help.userInfo#1eb3758: field message: %w", err)
tl_help_user_info_gen.go#L320: return fmt.Errorf("unable to decode help.userInfo#1eb3758: field entities: %w", err)
tl_help_user_info_gen.go#L325: return fmt.Errorf("unable to decode help.userInfo#1eb3758: field entities: %w", err)
tl_help_user_info_gen.go#L333: return fmt.Errorf("unable to decode help.userInfo#1eb3758: field author: %w", err)
tl_help_user_info_gen.go#L340: return fmt.Errorf("unable to decode help.userInfo#1eb3758: field date: %w", err)
tl_help_user_info_gen.go#L417: return nil, fmt.Errorf("unable to decode HelpUserInfoClass: %w", err)
tl_help_user_info_gen.go#L424: return nil, fmt.Errorf("unable to decode HelpUserInfoClass: %w", err)
tl_help_user_info_gen.go#L428: return nil, fmt.Errorf("unable to decode HelpUserInfoClass: %w", bin.NewUnexpectedID(id))
tl_help_user_info_gen.go#L440: return fmt.Errorf("unable to decode HelpUserInfoBox to nil")
tl_help_user_info_gen.go#L444: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_help_user_info_gen.go#L453: return fmt.Errorf("unable to encode HelpUserInfoClass as nil")
tl_high_score_gen.go#L127: return fmt.Errorf("can't encode highScore#58fffcd0 as nil")
tl_high_score_gen.go#L136: return fmt.Errorf("can't encode highScore#58fffcd0 as nil")
tl_high_score_gen.go#L162: return fmt.Errorf("can't decode highScore#58fffcd0 to nil")
tl_high_score_gen.go#L165: return fmt.Errorf("unable to decode highScore#58fffcd0: %w", err)
tl_high_score_gen.go#L173: return fmt.Errorf("can't decode highScore#58fffcd0 to nil")
tl_high_score_gen.go#L178: return fmt.Errorf("unable to decode highScore#58fffcd0: field pos: %w", err)
tl_high_score_gen.go#L185: return fmt.Errorf("unable to decode highScore#58fffcd0: field user_id: %w", err)
tl_high_score_gen.go#L192: return fmt.Errorf("unable to decode highScore#58fffcd0: field score: %w", err)
tl_imported_contact_gen.go#L119: return fmt.Errorf("can't encode importedContact#d0028438 as nil")
tl_imported_contact_gen.go#L128: return fmt.Errorf("can't encode importedContact#d0028438 as nil")
tl_imported_contact_gen.go#L148: return fmt.Errorf("can't decode importedContact#d0028438 to nil")
tl_imported_contact_gen.go#L151: return fmt.Errorf("unable to decode importedContact#d0028438: %w", err)
tl_imported_contact_gen.go#L159: return fmt.Errorf("can't decode importedContact#d0028438 to nil")
tl_imported_contact_gen.go#L164: return fmt.Errorf("unable to decode importedContact#d0028438: field user_id: %w", err)
tl_imported_contact_gen.go#L171: return fmt.Errorf("unable to decode importedContact#d0028438: field client_id: %w", err)
tl_init_connection_gen.go#L228: return fmt.Errorf("can't encode initConnection#c1cd5ea9 as nil")
tl_init_connection_gen.go#L237: return fmt.Errorf("can't encode initConnection#c1cd5ea9 as nil")
tl_init_connection_gen.go#L246: return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field flags: %w", err)
tl_init_connection_gen.go#L257: return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field proxy: %w", err)
tl_init_connection_gen.go#L262: return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field params is nil")
tl_init_connection_gen.go#L265: return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field params: %w", err)
tl_init_connection_gen.go#L269: return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field query: %w", err)
tl_init_connection_gen.go#L347: return fmt.Errorf("can't decode initConnection#c1cd5ea9 to nil")
tl_init_connection_gen.go#L350: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: %w", err)
tl_init_connection_gen.go#L358: return fmt.Errorf("can't decode initConnection#c1cd5ea9 to nil")
tl_init_connection_gen.go#L362: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field flags: %w", err)
tl_init_connection_gen.go#L368: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field api_id: %w", err)
tl_init_connection_gen.go#L375: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field device_model: %w", err)
tl_init_connection_gen.go#L382: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field system_version: %w", err)
tl_init_connection_gen.go#L389: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field app_version: %w", err)
tl_init_connection_gen.go#L396: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field system_lang_code: %w", err)
tl_init_connection_gen.go#L403: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field lang_pack: %w", err)
tl_init_connection_gen.go#L410: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field lang_code: %w", err)
tl_init_connection_gen.go#L416: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field proxy: %w", err)
tl_init_connection_gen.go#L422: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field params: %w", err)
tl_init_connection_gen.go#L428: return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field query: %w", err)
tl_inline_bot_switch_p_m_gen.go#L117: return fmt.Errorf("can't encode inlineBotSwitchPM#3c20629f as nil")
tl_inline_bot_switch_p_m_gen.go#L126: return fmt.Errorf("can't encode inlineBotSwitchPM#3c20629f as nil")
tl_inline_bot_switch_p_m_gen.go#L146: return fmt.Errorf("can't decode inlineBotSwitchPM#3c20629f to nil")
tl_inline_bot_switch_p_m_gen.go#L149: return fmt.Errorf("unable to decode inlineBotSwitchPM#3c20629f: %w", err)
tl_inline_bot_switch_p_m_gen.go#L157: return fmt.Errorf("can't decode inlineBotSwitchPM#3c20629f to nil")
tl_inline_bot_switch_p_m_gen.go#L162: return fmt.Errorf("unable to decode inlineBotSwitchPM#3c20629f: field text: %w", err)
tl_inline_bot_switch_p_m_gen.go#L169: return fmt.Errorf("unable to decode inlineBotSwitchPM#3c20629f: field start_param: %w", err)
tl_inline_query_peer_type_gen.go#L87: return fmt.Errorf("can't encode inlineQueryPeerTypeSameBotPM#3081ed9d as nil")
tl_inline_query_peer_type_gen.go#L96: return fmt.Errorf("can't encode inlineQueryPeerTypeSameBotPM#3081ed9d as nil")
tl_inline_query_peer_type_gen.go#L104: return fmt.Errorf("can't decode inlineQueryPeerTypeSameBotPM#3081ed9d to nil")
tl_inline_query_peer_type_gen.go#L107: return fmt.Errorf("unable to decode inlineQueryPeerTypeSameBotPM#3081ed9d: %w", err)
tl_inline_query_peer_type_gen.go#L115: return fmt.Errorf("can't decode inlineQueryPeerTypeSameBotPM#3081ed9d to nil")
tl_inline_query_peer_type_gen.go#L188: return fmt.Errorf("can't encode inlineQueryPeerTypePM#833c0fac as nil")
tl_inline_query_peer_type_gen.go#L197: return fmt.Errorf("can't encode inlineQueryPeerTypePM#833c0fac as nil")
tl_inline_query_peer_type_gen.go#L205: return fmt.Errorf("can't decode inlineQueryPeerTypePM#833c0fac to nil")
tl_inline_query_peer_type_gen.go#L208: return fmt.Errorf("unable to decode inlineQueryPeerTypePM#833c0fac: %w", err)
tl_inline_query_peer_type_gen.go#L216: return fmt.Errorf("can't decode inlineQueryPeerTypePM#833c0fac to nil")
tl_inline_query_peer_type_gen.go#L289: return fmt.Errorf("can't encode inlineQueryPeerTypeChat#d766c50a as nil")
tl_inline_query_peer_type_gen.go#L298: return fmt.Errorf("can't encode inlineQueryPeerTypeChat#d766c50a as nil")
tl_inline_query_peer_type_gen.go#L306: return fmt.Errorf("can't decode inlineQueryPeerTypeChat#d766c50a to nil")
tl_inline_query_peer_type_gen.go#L309: return fmt.Errorf("unable to decode inlineQueryPeerTypeChat#d766c50a: %w", err)
tl_inline_query_peer_type_gen.go#L317: return fmt.Errorf("can't decode inlineQueryPeerTypeChat#d766c50a to nil")
tl_inline_query_peer_type_gen.go#L390: return fmt.Errorf("can't encode inlineQueryPeerTypeMegagroup#5ec4be43 as nil")
tl_inline_query_peer_type_gen.go#L399: return fmt.Errorf("can't encode inlineQueryPeerTypeMegagroup#5ec4be43 as nil")
tl_inline_query_peer_type_gen.go#L407: return fmt.Errorf("can't decode inlineQueryPeerTypeMegagroup#5ec4be43 to nil")
tl_inline_query_peer_type_gen.go#L410: return fmt.Errorf("unable to decode inlineQueryPeerTypeMegagroup#5ec4be43: %w", err)
tl_inline_query_peer_type_gen.go#L418: return fmt.Errorf("can't decode inlineQueryPeerTypeMegagroup#5ec4be43 to nil")
tl_inline_query_peer_type_gen.go#L491: return fmt.Errorf("can't encode inlineQueryPeerTypeBroadcast#6334ee9a as nil")
tl_inline_query_peer_type_gen.go#L500: return fmt.Errorf("can't encode inlineQueryPeerTypeBroadcast#6334ee9a as nil")
tl_inline_query_peer_type_gen.go#L508: return fmt.Errorf("can't decode inlineQueryPeerTypeBroadcast#6334ee9a to nil")
tl_inline_query_peer_type_gen.go#L511: return fmt.Errorf("unable to decode inlineQueryPeerTypeBroadcast#6334ee9a: %w", err)
tl_inline_query_peer_type_gen.go#L519: return fmt.Errorf("can't decode inlineQueryPeerTypeBroadcast#6334ee9a to nil")
tl_inline_query_peer_type_gen.go#L584: return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
tl_inline_query_peer_type_gen.go#L591: return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
tl_inline_query_peer_type_gen.go#L598: return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
tl_inline_query_peer_type_gen.go#L605: return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
tl_inline_query_peer_type_gen.go#L612: return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
tl_inline_query_peer_type_gen.go#L616: return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", bin.NewUnexpectedID(id))
tl_inline_query_peer_type_gen.go#L628: return fmt.Errorf("unable to decode InlineQueryPeerTypeBox to nil")
tl_inline_query_peer_type_gen.go#L632: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_inline_query_peer_type_gen.go#L641: return fmt.Errorf("unable to encode InlineQueryPeerTypeClass as nil")
tl_input_app_event_gen.go#L139: return fmt.Errorf("can't encode inputAppEvent#1d1b1245 as nil")
tl_input_app_event_gen.go#L148: return fmt.Errorf("can't encode inputAppEvent#1d1b1245 as nil")
tl_input_app_event_gen.go#L154: return fmt.Errorf("unable to encode inputAppEvent#1d1b1245: field data is nil")
tl_input_app_event_gen.go#L157: return fmt.Errorf("unable to encode inputAppEvent#1d1b1245: field data: %w", err)
tl_input_app_event_gen.go#L185: return fmt.Errorf("can't decode inputAppEvent#1d1b1245 to nil")
tl_input_app_event_gen.go#L188: return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: %w", err)
tl_input_app_event_gen.go#L196: return fmt.Errorf("can't decode inputAppEvent#1d1b1245 to nil")
tl_input_app_event_gen.go#L201: return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: field time: %w", err)
tl_input_app_event_gen.go#L208: return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: field type: %w", err)
tl_input_app_event_gen.go#L215: return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: field peer: %w", err)
tl_input_app_event_gen.go#L222: return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: field data: %w", err)
tl_input_bot_inline_message_gen.go#L150: return fmt.Errorf("can't encode inputBotInlineMessageMediaAuto#3380c786 as nil")
tl_input_bot_inline_message_gen.go#L159: return fmt.Errorf("can't encode inputBotInlineMessageMediaAuto#3380c786 as nil")
tl_input_bot_inline_message_gen.go#L168: return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L175: return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field entities element with index %d is nil", idx)
tl_input_bot_inline_message_gen.go#L178: return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field entities element with index %d: %w", idx, err)
tl_input_bot_inline_message_gen.go#L184: return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field reply_markup is nil")
tl_input_bot_inline_message_gen.go#L187: return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L239: return fmt.Errorf("can't decode inputBotInlineMessageMediaAuto#3380c786 to nil")
tl_input_bot_inline_message_gen.go#L242: return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: %w", err)
tl_input_bot_inline_message_gen.go#L250: return fmt.Errorf("can't decode inputBotInlineMessageMediaAuto#3380c786 to nil")
tl_input_bot_inline_message_gen.go#L254: return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L260: return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field message: %w", err)
tl_input_bot_inline_message_gen.go#L267: return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field entities: %w", err)
tl_input_bot_inline_message_gen.go#L272: return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field entities: %w", err)
tl_input_bot_inline_message_gen.go#L280: return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L430: return fmt.Errorf("can't encode inputBotInlineMessageText#3dcd7a87 as nil")
tl_input_bot_inline_message_gen.go#L439: return fmt.Errorf("can't encode inputBotInlineMessageText#3dcd7a87 as nil")
tl_input_bot_inline_message_gen.go#L451: return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L458: return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field entities element with index %d is nil", idx)
tl_input_bot_inline_message_gen.go#L461: return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field entities element with index %d: %w", idx, err)
tl_input_bot_inline_message_gen.go#L467: return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field reply_markup is nil")
tl_input_bot_inline_message_gen.go#L470: return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L538: return fmt.Errorf("can't decode inputBotInlineMessageText#3dcd7a87 to nil")
tl_input_bot_inline_message_gen.go#L541: return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: %w", err)
tl_input_bot_inline_message_gen.go#L549: return fmt.Errorf("can't decode inputBotInlineMessageText#3dcd7a87 to nil")
tl_input_bot_inline_message_gen.go#L553: return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L560: return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field message: %w", err)
tl_input_bot_inline_message_gen.go#L567: return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field entities: %w", err)
tl_input_bot_inline_message_gen.go#L572: return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field entities: %w", err)
tl_input_bot_inline_message_gen.go#L580: return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L756: return fmt.Errorf("can't encode inputBotInlineMessageMediaGeo#96929a85 as nil")
tl_input_bot_inline_message_gen.go#L765: return fmt.Errorf("can't encode inputBotInlineMessageMediaGeo#96929a85 as nil")
tl_input_bot_inline_message_gen.go#L780: return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L783: return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field geo_point is nil")
tl_input_bot_inline_message_gen.go#L786: return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field geo_point: %w", err)
tl_input_bot_inline_message_gen.go#L799: return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field reply_markup is nil")
tl_input_bot_inline_message_gen.go#L802: return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L876: return fmt.Errorf("can't decode inputBotInlineMessageMediaGeo#96929a85 to nil")
tl_input_bot_inline_message_gen.go#L879: return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: %w", err)
tl_input_bot_inline_message_gen.go#L887: return fmt.Errorf("can't decode inputBotInlineMessageMediaGeo#96929a85 to nil")
tl_input_bot_inline_message_gen.go#L891: return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L897: return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field geo_point: %w", err)
tl_input_bot_inline_message_gen.go#L904: return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field heading: %w", err)
tl_input_bot_inline_message_gen.go#L911: return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field period: %w", err)
tl_input_bot_inline_message_gen.go#L918: return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field proximity_notification_radius: %w", err)
tl_input_bot_inline_message_gen.go#L925: return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L1098: return fmt.Errorf("can't encode inputBotInlineMessageMediaVenue#417bbf11 as nil")
tl_input_bot_inline_message_gen.go#L1107: return fmt.Errorf("can't encode inputBotInlineMessageMediaVenue#417bbf11 as nil")
tl_input_bot_inline_message_gen.go#L1113: return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L1116: return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field geo_point is nil")
tl_input_bot_inline_message_gen.go#L1119: return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field geo_point: %w", err)
tl_input_bot_inline_message_gen.go#L1128: return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field reply_markup is nil")
tl_input_bot_inline_message_gen.go#L1131: return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L1185: return fmt.Errorf("can't decode inputBotInlineMessageMediaVenue#417bbf11 to nil")
tl_input_bot_inline_message_gen.go#L1188: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: %w", err)
tl_input_bot_inline_message_gen.go#L1196: return fmt.Errorf("can't decode inputBotInlineMessageMediaVenue#417bbf11 to nil")
tl_input_bot_inline_message_gen.go#L1200: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L1206: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field geo_point: %w", err)
tl_input_bot_inline_message_gen.go#L1213: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field title: %w", err)
tl_input_bot_inline_message_gen.go#L1220: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field address: %w", err)
tl_input_bot_inline_message_gen.go#L1227: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field provider: %w", err)
tl_input_bot_inline_message_gen.go#L1234: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field venue_id: %w", err)
tl_input_bot_inline_message_gen.go#L1241: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field venue_type: %w", err)
tl_input_bot_inline_message_gen.go#L1248: return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L1399: return fmt.Errorf("can't encode inputBotInlineMessageMediaContact#a6edbffd as nil")
tl_input_bot_inline_message_gen.go#L1408: return fmt.Errorf("can't encode inputBotInlineMessageMediaContact#a6edbffd as nil")
tl_input_bot_inline_message_gen.go#L1414: return fmt.Errorf("unable to encode inputBotInlineMessageMediaContact#a6edbffd: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L1422: return fmt.Errorf("unable to encode inputBotInlineMessageMediaContact#a6edbffd: field reply_markup is nil")
tl_input_bot_inline_message_gen.go#L1425: return fmt.Errorf("unable to encode inputBotInlineMessageMediaContact#a6edbffd: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L1469: return fmt.Errorf("can't decode inputBotInlineMessageMediaContact#a6edbffd to nil")
tl_input_bot_inline_message_gen.go#L1472: return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: %w", err)
tl_input_bot_inline_message_gen.go#L1480: return fmt.Errorf("can't decode inputBotInlineMessageMediaContact#a6edbffd to nil")
tl_input_bot_inline_message_gen.go#L1484: return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L1490: return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field phone_number: %w", err)
tl_input_bot_inline_message_gen.go#L1497: return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field first_name: %w", err)
tl_input_bot_inline_message_gen.go#L1504: return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field last_name: %w", err)
tl_input_bot_inline_message_gen.go#L1511: return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field vcard: %w", err)
tl_input_bot_inline_message_gen.go#L1518: return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L1625: return fmt.Errorf("can't encode inputBotInlineMessageGame#4b425864 as nil")
tl_input_bot_inline_message_gen.go#L1634: return fmt.Errorf("can't encode inputBotInlineMessageGame#4b425864 as nil")
tl_input_bot_inline_message_gen.go#L1640: return fmt.Errorf("unable to encode inputBotInlineMessageGame#4b425864: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L1644: return fmt.Errorf("unable to encode inputBotInlineMessageGame#4b425864: field reply_markup is nil")
tl_input_bot_inline_message_gen.go#L1647: return fmt.Errorf("unable to encode inputBotInlineMessageGame#4b425864: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L1671: return fmt.Errorf("can't decode inputBotInlineMessageGame#4b425864 to nil")
tl_input_bot_inline_message_gen.go#L1674: return fmt.Errorf("unable to decode inputBotInlineMessageGame#4b425864: %w", err)
tl_input_bot_inline_message_gen.go#L1682: return fmt.Errorf("can't decode inputBotInlineMessageGame#4b425864 to nil")
tl_input_bot_inline_message_gen.go#L1686: return fmt.Errorf("unable to decode inputBotInlineMessageGame#4b425864: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L1692: return fmt.Errorf("unable to decode inputBotInlineMessageGame#4b425864: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L1913: return fmt.Errorf("can't encode inputBotInlineMessageMediaInvoice#d5348d85 as nil")
tl_input_bot_inline_message_gen.go#L1922: return fmt.Errorf("can't encode inputBotInlineMessageMediaInvoice#d5348d85 as nil")
tl_input_bot_inline_message_gen.go#L1937: return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d5348d85: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L1943: return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d5348d85: field photo: %w", err)
tl_input_bot_inline_message_gen.go#L1947: return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d5348d85: field invoice: %w", err)
tl_input_bot_inline_message_gen.go#L1952: return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d5348d85: field provider_data: %w", err)
tl_input_bot_inline_message_gen.go#L1957: return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d5348d85: field reply_markup is nil")
tl_input_bot_inline_message_gen.go#L1960: return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d5348d85: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L2066: return fmt.Errorf("can't decode inputBotInlineMessageMediaInvoice#d5348d85 to nil")
tl_input_bot_inline_message_gen.go#L2069: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: %w", err)
tl_input_bot_inline_message_gen.go#L2077: return fmt.Errorf("can't decode inputBotInlineMessageMediaInvoice#d5348d85 to nil")
tl_input_bot_inline_message_gen.go#L2081: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field flags: %w", err)
tl_input_bot_inline_message_gen.go#L2089: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field title: %w", err)
tl_input_bot_inline_message_gen.go#L2096: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field description: %w", err)
tl_input_bot_inline_message_gen.go#L2102: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field photo: %w", err)
tl_input_bot_inline_message_gen.go#L2107: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field invoice: %w", err)
tl_input_bot_inline_message_gen.go#L2113: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field payload: %w", err)
tl_input_bot_inline_message_gen.go#L2120: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field provider: %w", err)
tl_input_bot_inline_message_gen.go#L2126: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field provider_data: %w", err)
tl_input_bot_inline_message_gen.go#L2132: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field start_param: %w", err)
tl_input_bot_inline_message_gen.go#L2139: return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d5348d85: field reply_markup: %w", err)
tl_input_bot_inline_message_gen.go#L2211: return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
tl_input_bot_inline_message_gen.go#L2218: return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
tl_input_bot_inline_message_gen.go#L2225: return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
tl_input_bot_inline_message_gen.go#L2232: return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
tl_input_bot_inline_message_gen.go#L2239: return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
tl_input_bot_inline_message_gen.go#L2246: return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
tl_input_bot_inline_message_gen.go#L2253: return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
tl_input_bot_inline_message_gen.go#L2257: return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", bin.NewUnexpectedID(id))
tl_input_bot_inline_message_gen.go#L2269: return fmt.Errorf("unable to decode InputBotInlineMessageBox to nil")
tl_input_bot_inline_message_gen.go#L2273: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_bot_inline_message_gen.go#L2282: return fmt.Errorf("unable to encode InputBotInlineMessageClass as nil")
tl_input_bot_inline_message_id_gen.go#L127: return fmt.Errorf("can't encode inputBotInlineMessageID#890c3d89 as nil")
tl_input_bot_inline_message_id_gen.go#L136: return fmt.Errorf("can't encode inputBotInlineMessageID#890c3d89 as nil")
tl_input_bot_inline_message_id_gen.go#L162: return fmt.Errorf("can't decode inputBotInlineMessageID#890c3d89 to nil")
tl_input_bot_inline_message_id_gen.go#L165: return fmt.Errorf("unable to decode inputBotInlineMessageID#890c3d89: %w", err)
tl_input_bot_inline_message_id_gen.go#L173: return fmt.Errorf("can't decode inputBotInlineMessageID#890c3d89 to nil")
tl_input_bot_inline_message_id_gen.go#L178: return fmt.Errorf("unable to decode inputBotInlineMessageID#890c3d89: field dc_id: %w", err)
tl_input_bot_inline_message_id_gen.go#L185: return fmt.Errorf("unable to decode inputBotInlineMessageID#890c3d89: field id: %w", err)
tl_input_bot_inline_message_id_gen.go#L192: return fmt.Errorf("unable to decode inputBotInlineMessageID#890c3d89: field access_hash: %w", err)
tl_input_bot_inline_result_gen.go#L223: return fmt.Errorf("can't encode inputBotInlineResult#88bf9319 as nil")
tl_input_bot_inline_result_gen.go#L232: return fmt.Errorf("can't encode inputBotInlineResult#88bf9319 as nil")
tl_input_bot_inline_result_gen.go#L250: return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field flags: %w", err)
tl_input_bot_inline_result_gen.go#L265: return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field thumb: %w", err)
tl_input_bot_inline_result_gen.go#L270: return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field content: %w", err)
tl_input_bot_inline_result_gen.go#L274: return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field send_message is nil")
tl_input_bot_inline_result_gen.go#L277: return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field send_message: %w", err)
tl_input_bot_inline_result_gen.go#L375: return fmt.Errorf("can't decode inputBotInlineResult#88bf9319 to nil")
tl_input_bot_inline_result_gen.go#L378: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: %w", err)
tl_input_bot_inline_result_gen.go#L386: return fmt.Errorf("can't decode inputBotInlineResult#88bf9319 to nil")
tl_input_bot_inline_result_gen.go#L390: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field flags: %w", err)
tl_input_bot_inline_result_gen.go#L396: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field id: %w", err)
tl_input_bot_inline_result_gen.go#L403: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field type: %w", err)
tl_input_bot_inline_result_gen.go#L410: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field title: %w", err)
tl_input_bot_inline_result_gen.go#L417: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field description: %w", err)
tl_input_bot_inline_result_gen.go#L424: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field url: %w", err)
tl_input_bot_inline_result_gen.go#L430: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field thumb: %w", err)
tl_input_bot_inline_result_gen.go#L435: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field content: %w", err)
tl_input_bot_inline_result_gen.go#L441: return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field send_message: %w", err)
tl_input_bot_inline_result_gen.go#L570: return fmt.Errorf("can't encode inputBotInlineResultPhoto#a8d864a7 as nil")
tl_input_bot_inline_result_gen.go#L579: return fmt.Errorf("can't encode inputBotInlineResultPhoto#a8d864a7 as nil")
tl_input_bot_inline_result_gen.go#L584: return fmt.Errorf("unable to encode inputBotInlineResultPhoto#a8d864a7: field photo is nil")
tl_input_bot_inline_result_gen.go#L587: return fmt.Errorf("unable to encode inputBotInlineResultPhoto#a8d864a7: field photo: %w", err)
tl_input_bot_inline_result_gen.go#L590: return fmt.Errorf("unable to encode inputBotInlineResultPhoto#a8d864a7: field send_message is nil")
tl_input_bot_inline_result_gen.go#L593: return fmt.Errorf("unable to encode inputBotInlineResultPhoto#a8d864a7: field send_message: %w", err)
tl_input_bot_inline_result_gen.go#L621: return fmt.Errorf("can't decode inputBotInlineResultPhoto#a8d864a7 to nil")
tl_input_bot_inline_result_gen.go#L624: return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: %w", err)
tl_input_bot_inline_result_gen.go#L632: return fmt.Errorf("can't decode inputBotInlineResultPhoto#a8d864a7 to nil")
tl_input_bot_inline_result_gen.go#L637: return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: field id: %w", err)
tl_input_bot_inline_result_gen.go#L644: return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: field type: %w", err)
tl_input_bot_inline_result_gen.go#L651: return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: field photo: %w", err)
tl_input_bot_inline_result_gen.go#L658: return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: field send_message: %w", err)
tl_input_bot_inline_result_gen.go#L829: return fmt.Errorf("can't encode inputBotInlineResultDocument#fff8fdc4 as nil")
tl_input_bot_inline_result_gen.go#L838: return fmt.Errorf("can't encode inputBotInlineResultDocument#fff8fdc4 as nil")
tl_input_bot_inline_result_gen.go#L847: return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field flags: %w", err)
tl_input_bot_inline_result_gen.go#L858: return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field document is nil")
tl_input_bot_inline_result_gen.go#L861: return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field document: %w", err)
tl_input_bot_inline_result_gen.go#L864: return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field send_message is nil")
tl_input_bot_inline_result_gen.go#L867: return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field send_message: %w", err)
tl_input_bot_inline_result_gen.go#L925: return fmt.Errorf("can't decode inputBotInlineResultDocument#fff8fdc4 to nil")
tl_input_bot_inline_result_gen.go#L928: return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: %w", err)
tl_input_bot_inline_result_gen.go#L936: return fmt.Errorf("can't decode inputBotInlineResultDocument#fff8fdc4 to nil")
tl_input_bot_inline_result_gen.go#L940: return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field flags: %w", err)
tl_input_bot_inline_result_gen.go#L946: return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field id: %w", err)
tl_input_bot_inline_result_gen.go#L953: return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field type: %w", err)
tl_input_bot_inline_result_gen.go#L960: return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field title: %w", err)
tl_input_bot_inline_result_gen.go#L967: return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field description: %w", err)
tl_input_bot_inline_result_gen.go#L974: return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field document: %w", err)
tl_input_bot_inline_result_gen.go#L981: return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field send_message: %w", err)
tl_input_bot_inline_result_gen.go#L1096: return fmt.Errorf("can't encode inputBotInlineResultGame#4fa417f2 as nil")
tl_input_bot_inline_result_gen.go#L1105: return fmt.Errorf("can't encode inputBotInlineResultGame#4fa417f2 as nil")
tl_input_bot_inline_result_gen.go#L1110: return fmt.Errorf("unable to encode inputBotInlineResultGame#4fa417f2: field send_message is nil")
tl_input_bot_inline_result_gen.go#L1113: return fmt.Errorf("unable to encode inputBotInlineResultGame#4fa417f2: field send_message: %w", err)
tl_input_bot_inline_result_gen.go#L1136: return fmt.Errorf("can't decode inputBotInlineResultGame#4fa417f2 to nil")
tl_input_bot_inline_result_gen.go#L1139: return fmt.Errorf("unable to decode inputBotInlineResultGame#4fa417f2: %w", err)
tl_input_bot_inline_result_gen.go#L1147: return fmt.Errorf("can't decode inputBotInlineResultGame#4fa417f2 to nil")
tl_input_bot_inline_result_gen.go#L1152: return fmt.Errorf("unable to decode inputBotInlineResultGame#4fa417f2: field id: %w", err)
tl_input_bot_inline_result_gen.go#L1159: return fmt.Errorf("unable to decode inputBotInlineResultGame#4fa417f2: field short_name: %w", err)
tl_input_bot_inline_result_gen.go#L1166: return fmt.Errorf("unable to decode inputBotInlineResultGame#4fa417f2: field send_message: %w", err)
tl_input_bot_inline_result_gen.go#L1238: return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", err)
tl_input_bot_inline_result_gen.go#L1245: return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", err)
tl_input_bot_inline_result_gen.go#L1252: return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", err)
tl_input_bot_inline_result_gen.go#L1259: return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", err)
tl_input_bot_inline_result_gen.go#L1263: return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", bin.NewUnexpectedID(id))
tl_input_bot_inline_result_gen.go#L1275: return fmt.Errorf("unable to decode InputBotInlineResultBox to nil")
tl_input_bot_inline_result_gen.go#L1279: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_bot_inline_result_gen.go#L1288: return fmt.Errorf("unable to encode InputBotInlineResultClass as nil")
tl_input_channel_gen.go#L88: return fmt.Errorf("can't encode inputChannelEmpty#ee8c1e86 as nil")
tl_input_channel_gen.go#L97: return fmt.Errorf("can't encode inputChannelEmpty#ee8c1e86 as nil")
tl_input_channel_gen.go#L105: return fmt.Errorf("can't decode inputChannelEmpty#ee8c1e86 to nil")
tl_input_channel_gen.go#L108: return fmt.Errorf("unable to decode inputChannelEmpty#ee8c1e86: %w", err)
tl_input_channel_gen.go#L116: return fmt.Errorf("can't decode inputChannelEmpty#ee8c1e86 to nil")
tl_input_channel_gen.go#L221: return fmt.Errorf("can't encode inputChannel#afeb712e as nil")
tl_input_channel_gen.go#L230: return fmt.Errorf("can't encode inputChannel#afeb712e as nil")
tl_input_channel_gen.go#L250: return fmt.Errorf("can't decode inputChannel#afeb712e to nil")
tl_input_channel_gen.go#L253: return fmt.Errorf("unable to decode inputChannel#afeb712e: %w", err)
tl_input_channel_gen.go#L261: return fmt.Errorf("can't decode inputChannel#afeb712e to nil")
tl_input_channel_gen.go#L266: return fmt.Errorf("unable to decode inputChannel#afeb712e: field channel_id: %w", err)
tl_input_channel_gen.go#L273: return fmt.Errorf("unable to decode inputChannel#afeb712e: field access_hash: %w", err)
tl_input_channel_gen.go#L391: return fmt.Errorf("can't encode inputChannelFromMessage#2a286531 as nil")
tl_input_channel_gen.go#L400: return fmt.Errorf("can't encode inputChannelFromMessage#2a286531 as nil")
tl_input_channel_gen.go#L403: return fmt.Errorf("unable to encode inputChannelFromMessage#2a286531: field peer is nil")
tl_input_channel_gen.go#L406: return fmt.Errorf("unable to encode inputChannelFromMessage#2a286531: field peer: %w", err)
tl_input_channel_gen.go#L431: return fmt.Errorf("can't decode inputChannelFromMessage#2a286531 to nil")
tl_input_channel_gen.go#L434: return fmt.Errorf("unable to decode inputChannelFromMessage#2a286531: %w", err)
tl_input_channel_gen.go#L442: return fmt.Errorf("can't decode inputChannelFromMessage#2a286531 to nil")
tl_input_channel_gen.go#L447: return fmt.Errorf("unable to decode inputChannelFromMessage#2a286531: field peer: %w", err)
tl_input_channel_gen.go#L454: return fmt.Errorf("unable to decode inputChannelFromMessage#2a286531: field msg_id: %w", err)
tl_input_channel_gen.go#L461: return fmt.Errorf("unable to decode inputChannelFromMessage#2a286531: field channel_id: %w", err)
tl_input_channel_gen.go#L570: return nil, fmt.Errorf("unable to decode InputChannelClass: %w", err)
tl_input_channel_gen.go#L577: return nil, fmt.Errorf("unable to decode InputChannelClass: %w", err)
tl_input_channel_gen.go#L584: return nil, fmt.Errorf("unable to decode InputChannelClass: %w", err)
tl_input_channel_gen.go#L588: return nil, fmt.Errorf("unable to decode InputChannelClass: %w", bin.NewUnexpectedID(id))
tl_input_channel_gen.go#L600: return fmt.Errorf("unable to decode InputChannelBox to nil")
tl_input_channel_gen.go#L604: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_channel_gen.go#L613: return fmt.Errorf("unable to encode InputChannelClass as nil")
tl_input_chat_photo_gen.go#L88: return fmt.Errorf("can't encode inputChatPhotoEmpty#1ca48f57 as nil")
tl_input_chat_photo_gen.go#L97: return fmt.Errorf("can't encode inputChatPhotoEmpty#1ca48f57 as nil")
tl_input_chat_photo_gen.go#L105: return fmt.Errorf("can't decode inputChatPhotoEmpty#1ca48f57 to nil")
tl_input_chat_photo_gen.go#L108: return fmt.Errorf("unable to decode inputChatPhotoEmpty#1ca48f57: %w", err)
tl_input_chat_photo_gen.go#L116: return fmt.Errorf("can't decode inputChatPhotoEmpty#1ca48f57 to nil")
tl_input_chat_photo_gen.go#L258: return fmt.Errorf("can't encode inputChatUploadedPhoto#c642724e as nil")
tl_input_chat_photo_gen.go#L267: return fmt.Errorf("can't encode inputChatUploadedPhoto#c642724e as nil")
tl_input_chat_photo_gen.go#L279: return fmt.Errorf("unable to encode inputChatUploadedPhoto#c642724e: field flags: %w", err)
tl_input_chat_photo_gen.go#L283: return fmt.Errorf("unable to encode inputChatUploadedPhoto#c642724e: field file is nil")
tl_input_chat_photo_gen.go#L286: return fmt.Errorf("unable to encode inputChatUploadedPhoto#c642724e: field file: %w", err)
tl_input_chat_photo_gen.go#L291: return fmt.Errorf("unable to encode inputChatUploadedPhoto#c642724e: field video is nil")
tl_input_chat_photo_gen.go#L294: return fmt.Errorf("unable to encode inputChatUploadedPhoto#c642724e: field video: %w", err)
tl_input_chat_photo_gen.go#L351: return fmt.Errorf("can't decode inputChatUploadedPhoto#c642724e to nil")
tl_input_chat_photo_gen.go#L354: return fmt.Errorf("unable to decode inputChatUploadedPhoto#c642724e: %w", err)
tl_input_chat_photo_gen.go#L362: return fmt.Errorf("can't decode inputChatUploadedPhoto#c642724e to nil")
tl_input_chat_photo_gen.go#L366: return fmt.Errorf("unable to decode inputChatUploadedPhoto#c642724e: field flags: %w", err)
tl_input_chat_photo_gen.go#L372: return fmt.Errorf("unable to decode inputChatUploadedPhoto#c642724e: field file: %w", err)
tl_input_chat_photo_gen.go#L379: return fmt.Errorf("unable to decode inputChatUploadedPhoto#c642724e: field video: %w", err)
tl_input_chat_photo_gen.go#L386: return fmt.Errorf("unable to decode inputChatUploadedPhoto#c642724e: field video_start_ts: %w", err)
tl_input_chat_photo_gen.go#L479: return fmt.Errorf("can't encode inputChatPhoto#8953ad37 as nil")
tl_input_chat_photo_gen.go#L488: return fmt.Errorf("can't encode inputChatPhoto#8953ad37 as nil")
tl_input_chat_photo_gen.go#L491: return fmt.Errorf("unable to encode inputChatPhoto#8953ad37: field id is nil")
tl_input_chat_photo_gen.go#L494: return fmt.Errorf("unable to encode inputChatPhoto#8953ad37: field id: %w", err)
tl_input_chat_photo_gen.go#L507: return fmt.Errorf("can't decode inputChatPhoto#8953ad37 to nil")
tl_input_chat_photo_gen.go#L510: return fmt.Errorf("unable to decode inputChatPhoto#8953ad37: %w", err)
tl_input_chat_photo_gen.go#L518: return fmt.Errorf("can't decode inputChatPhoto#8953ad37 to nil")
tl_input_chat_photo_gen.go#L523: return fmt.Errorf("unable to decode inputChatPhoto#8953ad37: field id: %w", err)
tl_input_chat_photo_gen.go#L588: return nil, fmt.Errorf("unable to decode InputChatPhotoClass: %w", err)
tl_input_chat_photo_gen.go#L595: return nil, fmt.Errorf("unable to decode InputChatPhotoClass: %w", err)
tl_input_chat_photo_gen.go#L602: return nil, fmt.Errorf("unable to decode InputChatPhotoClass: %w", err)
tl_input_chat_photo_gen.go#L606: return nil, fmt.Errorf("unable to decode InputChatPhotoClass: %w", bin.NewUnexpectedID(id))
tl_input_chat_photo_gen.go#L618: return fmt.Errorf("unable to decode InputChatPhotoBox to nil")
tl_input_chat_photo_gen.go#L622: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_chat_photo_gen.go#L631: return fmt.Errorf("unable to encode InputChatPhotoClass as nil")
tl_input_check_password_srp_gen.go#L88: return fmt.Errorf("can't encode inputCheckPasswordEmpty#9880f658 as nil")
tl_input_check_password_srp_gen.go#L97: return fmt.Errorf("can't encode inputCheckPasswordEmpty#9880f658 as nil")
tl_input_check_password_srp_gen.go#L105: return fmt.Errorf("can't decode inputCheckPasswordEmpty#9880f658 to nil")
tl_input_check_password_srp_gen.go#L108: return fmt.Errorf("unable to decode inputCheckPasswordEmpty#9880f658: %w", err)
tl_input_check_password_srp_gen.go#L116: return fmt.Errorf("can't decode inputCheckPasswordEmpty#9880f658 to nil")
tl_input_check_password_srp_gen.go#L241: return fmt.Errorf("can't encode inputCheckPasswordSRP#d27ff082 as nil")
tl_input_check_password_srp_gen.go#L250: return fmt.Errorf("can't encode inputCheckPasswordSRP#d27ff082 as nil")
tl_input_check_password_srp_gen.go#L276: return fmt.Errorf("can't decode inputCheckPasswordSRP#d27ff082 to nil")
tl_input_check_password_srp_gen.go#L279: return fmt.Errorf("unable to decode inputCheckPasswordSRP#d27ff082: %w", err)
tl_input_check_password_srp_gen.go#L287: return fmt.Errorf("can't decode inputCheckPasswordSRP#d27ff082 to nil")
tl_input_check_password_srp_gen.go#L292: return fmt.Errorf("unable to decode inputCheckPasswordSRP#d27ff082: field srp_id: %w", err)
tl_input_check_password_srp_gen.go#L299: return fmt.Errorf("unable to decode inputCheckPasswordSRP#d27ff082: field A: %w", err)
tl_input_check_password_srp_gen.go#L306: return fmt.Errorf("unable to decode inputCheckPasswordSRP#d27ff082: field M1: %w", err)
tl_input_check_password_srp_gen.go#L383: return nil, fmt.Errorf("unable to decode InputCheckPasswordSRPClass: %w", err)
tl_input_check_password_srp_gen.go#L390: return nil, fmt.Errorf("unable to decode InputCheckPasswordSRPClass: %w", err)
tl_input_check_password_srp_gen.go#L394: return nil, fmt.Errorf("unable to decode InputCheckPasswordSRPClass: %w", bin.NewUnexpectedID(id))
tl_input_check_password_srp_gen.go#L406: return fmt.Errorf("unable to decode InputCheckPasswordSRPBox to nil")
tl_input_check_password_srp_gen.go#L410: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_check_password_srp_gen.go#L419: return fmt.Errorf("unable to encode InputCheckPasswordSRPClass as nil")
tl_input_client_proxy_gen.go#L119: return fmt.Errorf("can't encode inputClientProxy#75588b3f as nil")
tl_input_client_proxy_gen.go#L128: return fmt.Errorf("can't encode inputClientProxy#75588b3f as nil")
tl_input_client_proxy_gen.go#L148: return fmt.Errorf("can't decode inputClientProxy#75588b3f to nil")
tl_input_client_proxy_gen.go#L151: return fmt.Errorf("unable to decode inputClientProxy#75588b3f: %w", err)
tl_input_client_proxy_gen.go#L159: return fmt.Errorf("can't decode inputClientProxy#75588b3f to nil")
tl_input_client_proxy_gen.go#L164: return fmt.Errorf("unable to decode inputClientProxy#75588b3f: field address: %w", err)
tl_input_client_proxy_gen.go#L171: return fmt.Errorf("unable to decode inputClientProxy#75588b3f: field port: %w", err)
tl_input_dialog_peer_gen.go#L105: return fmt.Errorf("can't encode inputDialogPeer#fcaafeb7 as nil")
tl_input_dialog_peer_gen.go#L114: return fmt.Errorf("can't encode inputDialogPeer#fcaafeb7 as nil")
tl_input_dialog_peer_gen.go#L117: return fmt.Errorf("unable to encode inputDialogPeer#fcaafeb7: field peer is nil")
tl_input_dialog_peer_gen.go#L120: return fmt.Errorf("unable to encode inputDialogPeer#fcaafeb7: field peer: %w", err)
tl_input_dialog_peer_gen.go#L133: return fmt.Errorf("can't decode inputDialogPeer#fcaafeb7 to nil")
tl_input_dialog_peer_gen.go#L136: return fmt.Errorf("unable to decode inputDialogPeer#fcaafeb7: %w", err)
tl_input_dialog_peer_gen.go#L144: return fmt.Errorf("can't decode inputDialogPeer#fcaafeb7 to nil")
tl_input_dialog_peer_gen.go#L149: return fmt.Errorf("unable to decode inputDialogPeer#fcaafeb7: field peer: %w", err)
tl_input_dialog_peer_gen.go#L248: return fmt.Errorf("can't encode inputDialogPeerFolder#64600527 as nil")
tl_input_dialog_peer_gen.go#L257: return fmt.Errorf("can't encode inputDialogPeerFolder#64600527 as nil")
tl_input_dialog_peer_gen.go#L271: return fmt.Errorf("can't decode inputDialogPeerFolder#64600527 to nil")
tl_input_dialog_peer_gen.go#L274: return fmt.Errorf("unable to decode inputDialogPeerFolder#64600527: %w", err)
tl_input_dialog_peer_gen.go#L282: return fmt.Errorf("can't decode inputDialogPeerFolder#64600527 to nil")
tl_input_dialog_peer_gen.go#L287: return fmt.Errorf("unable to decode inputDialogPeerFolder#64600527: field folder_id: %w", err)
tl_input_dialog_peer_gen.go#L351: return nil, fmt.Errorf("unable to decode InputDialogPeerClass: %w", err)
tl_input_dialog_peer_gen.go#L358: return nil, fmt.Errorf("unable to decode InputDialogPeerClass: %w", err)
tl_input_dialog_peer_gen.go#L362: return nil, fmt.Errorf("unable to decode InputDialogPeerClass: %w", bin.NewUnexpectedID(id))
tl_input_dialog_peer_gen.go#L374: return fmt.Errorf("unable to decode InputDialogPeerBox to nil")
tl_input_dialog_peer_gen.go#L378: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_dialog_peer_gen.go#L387: return fmt.Errorf("unable to encode InputDialogPeerClass as nil")
tl_input_document_gen.go#L88: return fmt.Errorf("can't encode inputDocumentEmpty#72f0eaae as nil")
tl_input_document_gen.go#L97: return fmt.Errorf("can't encode inputDocumentEmpty#72f0eaae as nil")
tl_input_document_gen.go#L105: return fmt.Errorf("can't decode inputDocumentEmpty#72f0eaae to nil")
tl_input_document_gen.go#L108: return fmt.Errorf("unable to decode inputDocumentEmpty#72f0eaae: %w", err)
tl_input_document_gen.go#L116: return fmt.Errorf("can't decode inputDocumentEmpty#72f0eaae to nil")
tl_input_document_gen.go#L235: return fmt.Errorf("can't encode inputDocument#1abfb575 as nil")
tl_input_document_gen.go#L244: return fmt.Errorf("can't encode inputDocument#1abfb575 as nil")
tl_input_document_gen.go#L270: return fmt.Errorf("can't decode inputDocument#1abfb575 to nil")
tl_input_document_gen.go#L273: return fmt.Errorf("unable to decode inputDocument#1abfb575: %w", err)
tl_input_document_gen.go#L281: return fmt.Errorf("can't decode inputDocument#1abfb575 to nil")
tl_input_document_gen.go#L286: return fmt.Errorf("unable to decode inputDocument#1abfb575: field id: %w", err)
tl_input_document_gen.go#L293: return fmt.Errorf("unable to decode inputDocument#1abfb575: field access_hash: %w", err)
tl_input_document_gen.go#L300: return fmt.Errorf("unable to decode inputDocument#1abfb575: field file_reference: %w", err)
tl_input_document_gen.go#L387: return nil, fmt.Errorf("unable to decode InputDocumentClass: %w", err)
tl_input_document_gen.go#L394: return nil, fmt.Errorf("unable to decode InputDocumentClass: %w", err)
tl_input_document_gen.go#L398: return nil, fmt.Errorf("unable to decode InputDocumentClass: %w", bin.NewUnexpectedID(id))
tl_input_document_gen.go#L410: return fmt.Errorf("unable to decode InputDocumentBox to nil")
tl_input_document_gen.go#L414: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_document_gen.go#L423: return fmt.Errorf("unable to encode InputDocumentClass as nil")
tl_input_encrypted_chat_gen.go#L122: return fmt.Errorf("can't encode inputEncryptedChat#f141b5e1 as nil")
tl_input_encrypted_chat_gen.go#L131: return fmt.Errorf("can't encode inputEncryptedChat#f141b5e1 as nil")
tl_input_encrypted_chat_gen.go#L151: return fmt.Errorf("can't decode inputEncryptedChat#f141b5e1 to nil")
tl_input_encrypted_chat_gen.go#L154: return fmt.Errorf("unable to decode inputEncryptedChat#f141b5e1: %w", err)
tl_input_encrypted_chat_gen.go#L162: return fmt.Errorf("can't decode inputEncryptedChat#f141b5e1 to nil")
tl_input_encrypted_chat_gen.go#L167: return fmt.Errorf("unable to decode inputEncryptedChat#f141b5e1: field chat_id: %w", err)
tl_input_encrypted_chat_gen.go#L174: return fmt.Errorf("unable to decode inputEncryptedChat#f141b5e1: field access_hash: %w", err)
tl_input_encrypted_file_gen.go#L88: return fmt.Errorf("can't encode inputEncryptedFileEmpty#1837c364 as nil")
tl_input_encrypted_file_gen.go#L97: return fmt.Errorf("can't encode inputEncryptedFileEmpty#1837c364 as nil")
tl_input_encrypted_file_gen.go#L105: return fmt.Errorf("can't decode inputEncryptedFileEmpty#1837c364 to nil")
tl_input_encrypted_file_gen.go#L108: return fmt.Errorf("unable to decode inputEncryptedFileEmpty#1837c364: %w", err)
tl_input_encrypted_file_gen.go#L116: return fmt.Errorf("can't decode inputEncryptedFileEmpty#1837c364 to nil")
tl_input_encrypted_file_gen.go#L244: return fmt.Errorf("can't encode inputEncryptedFileUploaded#64bd0306 as nil")
tl_input_encrypted_file_gen.go#L253: return fmt.Errorf("can't encode inputEncryptedFileUploaded#64bd0306 as nil")
tl_input_encrypted_file_gen.go#L285: return fmt.Errorf("can't decode inputEncryptedFileUploaded#64bd0306 to nil")
tl_input_encrypted_file_gen.go#L288: return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: %w", err)
tl_input_encrypted_file_gen.go#L296: return fmt.Errorf("can't decode inputEncryptedFileUploaded#64bd0306 to nil")
tl_input_encrypted_file_gen.go#L301: return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: field id: %w", err)
tl_input_encrypted_file_gen.go#L308: return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: field parts: %w", err)
tl_input_encrypted_file_gen.go#L315: return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: field md5_checksum: %w", err)
tl_input_encrypted_file_gen.go#L322: return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: field key_fingerprint: %w", err)
tl_input_encrypted_file_gen.go#L432: return fmt.Errorf("can't encode inputEncryptedFile#5a17b5e5 as nil")
tl_input_encrypted_file_gen.go#L441: return fmt.Errorf("can't encode inputEncryptedFile#5a17b5e5 as nil")
tl_input_encrypted_file_gen.go#L461: return fmt.Errorf("can't decode inputEncryptedFile#5a17b5e5 to nil")
tl_input_encrypted_file_gen.go#L464: return fmt.Errorf("unable to decode inputEncryptedFile#5a17b5e5: %w", err)
tl_input_encrypted_file_gen.go#L472: return fmt.Errorf("can't decode inputEncryptedFile#5a17b5e5 to nil")
tl_input_encrypted_file_gen.go#L477: return fmt.Errorf("unable to decode inputEncryptedFile#5a17b5e5: field id: %w", err)
tl_input_encrypted_file_gen.go#L484: return fmt.Errorf("unable to decode inputEncryptedFile#5a17b5e5: field access_hash: %w", err)
tl_input_encrypted_file_gen.go#L603: return fmt.Errorf("can't encode inputEncryptedFileBigUploaded#2dc173c8 as nil")
tl_input_encrypted_file_gen.go#L612: return fmt.Errorf("can't encode inputEncryptedFileBigUploaded#2dc173c8 as nil")
tl_input_encrypted_file_gen.go#L638: return fmt.Errorf("can't decode inputEncryptedFileBigUploaded#2dc173c8 to nil")
tl_input_encrypted_file_gen.go#L641: return fmt.Errorf("unable to decode inputEncryptedFileBigUploaded#2dc173c8: %w", err)
tl_input_encrypted_file_gen.go#L649: return fmt.Errorf("can't decode inputEncryptedFileBigUploaded#2dc173c8 to nil")
tl_input_encrypted_file_gen.go#L654: return fmt.Errorf("unable to decode inputEncryptedFileBigUploaded#2dc173c8: field id: %w", err)
tl_input_encrypted_file_gen.go#L661: return fmt.Errorf("unable to decode inputEncryptedFileBigUploaded#2dc173c8: field parts: %w", err)
tl_input_encrypted_file_gen.go#L668: return fmt.Errorf("unable to decode inputEncryptedFileBigUploaded#2dc173c8: field key_fingerprint: %w", err)
tl_input_encrypted_file_gen.go#L793: return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", err)
tl_input_encrypted_file_gen.go#L800: return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", err)
tl_input_encrypted_file_gen.go#L807: return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", err)
tl_input_encrypted_file_gen.go#L814: return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", err)
tl_input_encrypted_file_gen.go#L818: return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", bin.NewUnexpectedID(id))
tl_input_encrypted_file_gen.go#L830: return fmt.Errorf("unable to decode InputEncryptedFileBox to nil")
tl_input_encrypted_file_gen.go#L834: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_encrypted_file_gen.go#L843: return fmt.Errorf("unable to encode InputEncryptedFileClass as nil")
tl_input_file_gen.go#L145: return fmt.Errorf("can't encode inputFile#f52ff27f as nil")
tl_input_file_gen.go#L154: return fmt.Errorf("can't encode inputFile#f52ff27f as nil")
tl_input_file_gen.go#L186: return fmt.Errorf("can't decode inputFile#f52ff27f to nil")
tl_input_file_gen.go#L189: return fmt.Errorf("unable to decode inputFile#f52ff27f: %w", err)
tl_input_file_gen.go#L197: return fmt.Errorf("can't decode inputFile#f52ff27f to nil")
tl_input_file_gen.go#L202: return fmt.Errorf("unable to decode inputFile#f52ff27f: field id: %w", err)
tl_input_file_gen.go#L209: return fmt.Errorf("unable to decode inputFile#f52ff27f: field parts: %w", err)
tl_input_file_gen.go#L216: return fmt.Errorf("unable to decode inputFile#f52ff27f: field name: %w", err)
tl_input_file_gen.go#L223: return fmt.Errorf("unable to decode inputFile#f52ff27f: field md5_checksum: %w", err)
tl_input_file_gen.go#L342: return fmt.Errorf("can't encode inputFileBig#fa4f0bb5 as nil")
tl_input_file_gen.go#L351: return fmt.Errorf("can't encode inputFileBig#fa4f0bb5 as nil")
tl_input_file_gen.go#L377: return fmt.Errorf("can't decode inputFileBig#fa4f0bb5 to nil")
tl_input_file_gen.go#L380: return fmt.Errorf("unable to decode inputFileBig#fa4f0bb5: %w", err)
tl_input_file_gen.go#L388: return fmt.Errorf("can't decode inputFileBig#fa4f0bb5 to nil")
tl_input_file_gen.go#L393: return fmt.Errorf("unable to decode inputFileBig#fa4f0bb5: field id: %w", err)
tl_input_file_gen.go#L400: return fmt.Errorf("unable to decode inputFileBig#fa4f0bb5: field parts: %w", err)
tl_input_file_gen.go#L407: return fmt.Errorf("unable to decode inputFileBig#fa4f0bb5: field name: %w", err)
tl_input_file_gen.go#L480: return nil, fmt.Errorf("unable to decode InputFileClass: %w", err)
tl_input_file_gen.go#L487: return nil, fmt.Errorf("unable to decode InputFileClass: %w", err)
tl_input_file_gen.go#L491: return nil, fmt.Errorf("unable to decode InputFileClass: %w", bin.NewUnexpectedID(id))
tl_input_file_gen.go#L503: return fmt.Errorf("unable to decode InputFileBox to nil")
tl_input_file_gen.go#L507: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_file_gen.go#L516: return fmt.Errorf("unable to encode InputFileClass as nil")
tl_input_file_location_gen.go#L141: return fmt.Errorf("can't encode inputFileLocation#dfdaabe1 as nil")
tl_input_file_location_gen.go#L150: return fmt.Errorf("can't encode inputFileLocation#dfdaabe1 as nil")
tl_input_file_location_gen.go#L182: return fmt.Errorf("can't decode inputFileLocation#dfdaabe1 to nil")
tl_input_file_location_gen.go#L185: return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: %w", err)
tl_input_file_location_gen.go#L193: return fmt.Errorf("can't decode inputFileLocation#dfdaabe1 to nil")
tl_input_file_location_gen.go#L198: return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: field volume_id: %w", err)
tl_input_file_location_gen.go#L205: return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: field local_id: %w", err)
tl_input_file_location_gen.go#L212: return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: field secret: %w", err)
tl_input_file_location_gen.go#L219: return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: field file_reference: %w", err)
tl_input_file_location_gen.go#L329: return fmt.Errorf("can't encode inputEncryptedFileLocation#f5235d55 as nil")
tl_input_file_location_gen.go#L338: return fmt.Errorf("can't encode inputEncryptedFileLocation#f5235d55 as nil")
tl_input_file_location_gen.go#L358: return fmt.Errorf("can't decode inputEncryptedFileLocation#f5235d55 to nil")
tl_input_file_location_gen.go#L361: return fmt.Errorf("unable to decode inputEncryptedFileLocation#f5235d55: %w", err)
tl_input_file_location_gen.go#L369: return fmt.Errorf("can't decode inputEncryptedFileLocation#f5235d55 to nil")
tl_input_file_location_gen.go#L374: return fmt.Errorf("unable to decode inputEncryptedFileLocation#f5235d55: field id: %w", err)
tl_input_file_location_gen.go#L381: return fmt.Errorf("unable to decode inputEncryptedFileLocation#f5235d55: field access_hash: %w", err)
tl_input_file_location_gen.go#L513: return fmt.Errorf("can't encode inputDocumentFileLocation#bad07584 as nil")
tl_input_file_location_gen.go#L522: return fmt.Errorf("can't encode inputDocumentFileLocation#bad07584 as nil")
tl_input_file_location_gen.go#L554: return fmt.Errorf("can't decode inputDocumentFileLocation#bad07584 to nil")
tl_input_file_location_gen.go#L557: return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: %w", err)
tl_input_file_location_gen.go#L565: return fmt.Errorf("can't decode inputDocumentFileLocation#bad07584 to nil")
tl_input_file_location_gen.go#L570: return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: field id: %w", err)
tl_input_file_location_gen.go#L577: return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: field access_hash: %w", err)
tl_input_file_location_gen.go#L584: return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: field file_reference: %w", err)
tl_input_file_location_gen.go#L591: return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: field thumb_size: %w", err)
tl_input_file_location_gen.go#L704: return fmt.Errorf("can't encode inputSecureFileLocation#cbc7ee28 as nil")
tl_input_file_location_gen.go#L713: return fmt.Errorf("can't encode inputSecureFileLocation#cbc7ee28 as nil")
tl_input_file_location_gen.go#L733: return fmt.Errorf("can't decode inputSecureFileLocation#cbc7ee28 to nil")
tl_input_file_location_gen.go#L736: return fmt.Errorf("unable to decode inputSecureFileLocation#cbc7ee28: %w", err)
tl_input_file_location_gen.go#L744: return fmt.Errorf("can't decode inputSecureFileLocation#cbc7ee28 to nil")
tl_input_file_location_gen.go#L749: return fmt.Errorf("unable to decode inputSecureFileLocation#cbc7ee28: field id: %w", err)
tl_input_file_location_gen.go#L756: return fmt.Errorf("unable to decode inputSecureFileLocation#cbc7ee28: field access_hash: %w", err)
tl_input_file_location_gen.go#L832: return fmt.Errorf("can't encode inputTakeoutFileLocation#29be5899 as nil")
tl_input_file_location_gen.go#L841: return fmt.Errorf("can't encode inputTakeoutFileLocation#29be5899 as nil")
tl_input_file_location_gen.go#L849: return fmt.Errorf("can't decode inputTakeoutFileLocation#29be5899 to nil")
tl_input_file_location_gen.go#L852: return fmt.Errorf("unable to decode inputTakeoutFileLocation#29be5899: %w", err)
tl_input_file_location_gen.go#L860: return fmt.Errorf("can't decode inputTakeoutFileLocation#29be5899 to nil")
tl_input_file_location_gen.go#L1001: return fmt.Errorf("can't encode inputPhotoFileLocation#40181ffe as nil")
tl_input_file_location_gen.go#L1010: return fmt.Errorf("can't encode inputPhotoFileLocation#40181ffe as nil")
tl_input_file_location_gen.go#L1042: return fmt.Errorf("can't decode inputPhotoFileLocation#40181ffe to nil")
tl_input_file_location_gen.go#L1045: return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: %w", err)
tl_input_file_location_gen.go#L1053: return fmt.Errorf("can't decode inputPhotoFileLocation#40181ffe to nil")
tl_input_file_location_gen.go#L1058: return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: field id: %w", err)
tl_input_file_location_gen.go#L1065: return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: field access_hash: %w", err)
tl_input_file_location_gen.go#L1072: return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: field file_reference: %w", err)
tl_input_file_location_gen.go#L1079: return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: field thumb_size: %w", err)
tl_input_file_location_gen.go#L1227: return fmt.Errorf("can't encode inputPhotoLegacyFileLocation#d83466f3 as nil")
tl_input_file_location_gen.go#L1236: return fmt.Errorf("can't encode inputPhotoLegacyFileLocation#d83466f3 as nil")
tl_input_file_location_gen.go#L1280: return fmt.Errorf("can't decode inputPhotoLegacyFileLocation#d83466f3 to nil")
tl_input_file_location_gen.go#L1283: return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: %w", err)
tl_input_file_location_gen.go#L1291: return fmt.Errorf("can't decode inputPhotoLegacyFileLocation#d83466f3 to nil")
tl_input_file_location_gen.go#L1296: return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field id: %w", err)
tl_input_file_location_gen.go#L1303: return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field access_hash: %w", err)
tl_input_file_location_gen.go#L1310: return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field file_reference: %w", err)
tl_input_file_location_gen.go#L1317: return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field volume_id: %w", err)
tl_input_file_location_gen.go#L1324: return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field local_id: %w", err)
tl_input_file_location_gen.go#L1331: return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field secret: %w", err)
tl_input_file_location_gen.go#L1455: return fmt.Errorf("can't encode inputPeerPhotoFileLocation#37257e99 as nil")
tl_input_file_location_gen.go#L1464: return fmt.Errorf("can't encode inputPeerPhotoFileLocation#37257e99 as nil")
tl_input_file_location_gen.go#L1470: return fmt.Errorf("unable to encode inputPeerPhotoFileLocation#37257e99: field flags: %w", err)
tl_input_file_location_gen.go#L1473: return fmt.Errorf("unable to encode inputPeerPhotoFileLocation#37257e99: field peer is nil")
tl_input_file_location_gen.go#L1476: return fmt.Errorf("unable to encode inputPeerPhotoFileLocation#37257e99: field peer: %w", err)
tl_input_file_location_gen.go#L1511: return fmt.Errorf("can't decode inputPeerPhotoFileLocation#37257e99 to nil")
tl_input_file_location_gen.go#L1514: return fmt.Errorf("unable to decode inputPeerPhotoFileLocation#37257e99: %w", err)
tl_input_file_location_gen.go#L1522: return fmt.Errorf("can't decode inputPeerPhotoFileLocation#37257e99 to nil")
tl_input_file_location_gen.go#L1526: return fmt.Errorf("unable to decode inputPeerPhotoFileLocation#37257e99: field flags: %w", err)
tl_input_file_location_gen.go#L1533: return fmt.Errorf("unable to decode inputPeerPhotoFileLocation#37257e99: field peer: %w", err)
tl_input_file_location_gen.go#L1540: return fmt.Errorf("unable to decode inputPeerPhotoFileLocation#37257e99: field photo_id: %w", err)
tl_input_file_location_gen.go#L1647: return fmt.Errorf("can't encode inputStickerSetThumb#9d84f3db as nil")
tl_input_file_location_gen.go#L1656: return fmt.Errorf("can't encode inputStickerSetThumb#9d84f3db as nil")
tl_input_file_location_gen.go#L1659: return fmt.Errorf("unable to encode inputStickerSetThumb#9d84f3db: field stickerset is nil")
tl_input_file_location_gen.go#L1662: return fmt.Errorf("unable to encode inputStickerSetThumb#9d84f3db: field stickerset: %w", err)
tl_input_file_location_gen.go#L1681: return fmt.Errorf("can't decode inputStickerSetThumb#9d84f3db to nil")
tl_input_file_location_gen.go#L1684: return fmt.Errorf("unable to decode inputStickerSetThumb#9d84f3db: %w", err)
tl_input_file_location_gen.go#L1692: return fmt.Errorf("can't decode inputStickerSetThumb#9d84f3db to nil")
tl_input_file_location_gen.go#L1697: return fmt.Errorf("unable to decode inputStickerSetThumb#9d84f3db: field stickerset: %w", err)
tl_input_file_location_gen.go#L1704: return fmt.Errorf("unable to decode inputStickerSetThumb#9d84f3db: field thumb_version: %w", err)
tl_input_file_location_gen.go#L1818: return fmt.Errorf("can't encode inputGroupCallStream#bba51639 as nil")
tl_input_file_location_gen.go#L1827: return fmt.Errorf("can't encode inputGroupCallStream#bba51639 as nil")
tl_input_file_location_gen.go#L1830: return fmt.Errorf("unable to encode inputGroupCallStream#bba51639: field call: %w", err)
tl_input_file_location_gen.go#L1855: return fmt.Errorf("can't decode inputGroupCallStream#bba51639 to nil")
tl_input_file_location_gen.go#L1858: return fmt.Errorf("unable to decode inputGroupCallStream#bba51639: %w", err)
tl_input_file_location_gen.go#L1866: return fmt.Errorf("can't decode inputGroupCallStream#bba51639 to nil")
tl_input_file_location_gen.go#L1870: return fmt.Errorf("unable to decode inputGroupCallStream#bba51639: field call: %w", err)
tl_input_file_location_gen.go#L1876: return fmt.Errorf("unable to decode inputGroupCallStream#bba51639: field time_ms: %w", err)
tl_input_file_location_gen.go#L1883: return fmt.Errorf("unable to decode inputGroupCallStream#bba51639: field scale: %w", err)
tl_input_file_location_gen.go#L1955: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L1962: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L1969: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L1976: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L1983: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L1990: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L1997: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L2004: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L2011: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L2018: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
tl_input_file_location_gen.go#L2022: return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", bin.NewUnexpectedID(id))
tl_input_file_location_gen.go#L2034: return fmt.Errorf("unable to decode InputFileLocationBox to nil")
tl_input_file_location_gen.go#L2038: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_file_location_gen.go#L2047: return fmt.Errorf("unable to encode InputFileLocationClass as nil")
tl_input_folder_peer_gen.go#L119: return fmt.Errorf("can't encode inputFolderPeer#fbd2c296 as nil")
tl_input_folder_peer_gen.go#L128: return fmt.Errorf("can't encode inputFolderPeer#fbd2c296 as nil")
tl_input_folder_peer_gen.go#L131: return fmt.Errorf("unable to encode inputFolderPeer#fbd2c296: field peer is nil")
tl_input_folder_peer_gen.go#L134: return fmt.Errorf("unable to encode inputFolderPeer#fbd2c296: field peer: %w", err)
tl_input_folder_peer_gen.go#L153: return fmt.Errorf("can't decode inputFolderPeer#fbd2c296 to nil")
tl_input_folder_peer_gen.go#L156: return fmt.Errorf("unable to decode inputFolderPeer#fbd2c296: %w", err)
tl_input_folder_peer_gen.go#L164: return fmt.Errorf("can't decode inputFolderPeer#fbd2c296 to nil")
tl_input_folder_peer_gen.go#L169: return fmt.Errorf("unable to decode inputFolderPeer#fbd2c296: field peer: %w", err)
tl_input_folder_peer_gen.go#L176: return fmt.Errorf("unable to decode inputFolderPeer#fbd2c296: field folder_id: %w", err)
tl_input_game_gen.go#L122: return fmt.Errorf("can't encode inputGameID#32c3e77 as nil")
tl_input_game_gen.go#L131: return fmt.Errorf("can't encode inputGameID#32c3e77 as nil")
tl_input_game_gen.go#L151: return fmt.Errorf("can't decode inputGameID#32c3e77 to nil")
tl_input_game_gen.go#L154: return fmt.Errorf("unable to decode inputGameID#32c3e77: %w", err)
tl_input_game_gen.go#L162: return fmt.Errorf("can't decode inputGameID#32c3e77 to nil")
tl_input_game_gen.go#L167: return fmt.Errorf("unable to decode inputGameID#32c3e77: field id: %w", err)
tl_input_game_gen.go#L174: return fmt.Errorf("unable to decode inputGameID#32c3e77: field access_hash: %w", err)
tl_input_game_gen.go#L278: return fmt.Errorf("can't encode inputGameShortName#c331e80a as nil")
tl_input_game_gen.go#L287: return fmt.Errorf("can't encode inputGameShortName#c331e80a as nil")
tl_input_game_gen.go#L290: return fmt.Errorf("unable to encode inputGameShortName#c331e80a: field bot_id is nil")
tl_input_game_gen.go#L293: return fmt.Errorf("unable to encode inputGameShortName#c331e80a: field bot_id: %w", err)
tl_input_game_gen.go#L312: return fmt.Errorf("can't decode inputGameShortName#c331e80a to nil")
tl_input_game_gen.go#L315: return fmt.Errorf("unable to decode inputGameShortName#c331e80a: %w", err)
tl_input_game_gen.go#L323: return fmt.Errorf("can't decode inputGameShortName#c331e80a to nil")
tl_input_game_gen.go#L328: return fmt.Errorf("unable to decode inputGameShortName#c331e80a: field bot_id: %w", err)
tl_input_game_gen.go#L335: return fmt.Errorf("unable to decode inputGameShortName#c331e80a: field short_name: %w", err)
tl_input_game_gen.go#L399: return nil, fmt.Errorf("unable to decode InputGameClass: %w", err)
tl_input_game_gen.go#L406: return nil, fmt.Errorf("unable to decode InputGameClass: %w", err)
tl_input_game_gen.go#L410: return nil, fmt.Errorf("unable to decode InputGameClass: %w", bin.NewUnexpectedID(id))
tl_input_game_gen.go#L422: return fmt.Errorf("unable to decode InputGameBox to nil")
tl_input_game_gen.go#L426: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_game_gen.go#L435: return fmt.Errorf("unable to encode InputGameClass as nil")
tl_input_geo_point_gen.go#L88: return fmt.Errorf("can't encode inputGeoPointEmpty#e4c123d6 as nil")
tl_input_geo_point_gen.go#L97: return fmt.Errorf("can't encode inputGeoPointEmpty#e4c123d6 as nil")
tl_input_geo_point_gen.go#L105: return fmt.Errorf("can't decode inputGeoPointEmpty#e4c123d6 to nil")
tl_input_geo_point_gen.go#L108: return fmt.Errorf("unable to decode inputGeoPointEmpty#e4c123d6: %w", err)
tl_input_geo_point_gen.go#L116: return fmt.Errorf("can't decode inputGeoPointEmpty#e4c123d6 to nil")
tl_input_geo_point_gen.go#L243: return fmt.Errorf("can't encode inputGeoPoint#48222faf as nil")
tl_input_geo_point_gen.go#L252: return fmt.Errorf("can't encode inputGeoPoint#48222faf as nil")
tl_input_geo_point_gen.go#L258: return fmt.Errorf("unable to encode inputGeoPoint#48222faf: field flags: %w", err)
tl_input_geo_point_gen.go#L296: return fmt.Errorf("can't decode inputGeoPoint#48222faf to nil")
tl_input_geo_point_gen.go#L299: return fmt.Errorf("unable to decode inputGeoPoint#48222faf: %w", err)
tl_input_geo_point_gen.go#L307: return fmt.Errorf("can't decode inputGeoPoint#48222faf to nil")
tl_input_geo_point_gen.go#L311: return fmt.Errorf("unable to decode inputGeoPoint#48222faf: field flags: %w", err)
tl_input_geo_point_gen.go#L317: return fmt.Errorf("unable to decode inputGeoPoint#48222faf: field lat: %w", err)
tl_input_geo_point_gen.go#L324: return fmt.Errorf("unable to decode inputGeoPoint#48222faf: field long: %w", err)
tl_input_geo_point_gen.go#L331: return fmt.Errorf("unable to decode inputGeoPoint#48222faf: field accuracy_radius: %w", err)
tl_input_geo_point_gen.go#L408: return nil, fmt.Errorf("unable to decode InputGeoPointClass: %w", err)
tl_input_geo_point_gen.go#L415: return nil, fmt.Errorf("unable to decode InputGeoPointClass: %w", err)
tl_input_geo_point_gen.go#L419: return nil, fmt.Errorf("unable to decode InputGeoPointClass: %w", bin.NewUnexpectedID(id))
tl_input_geo_point_gen.go#L431: return fmt.Errorf("unable to decode InputGeoPointBox to nil")
tl_input_geo_point_gen.go#L435: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_geo_point_gen.go#L444: return fmt.Errorf("unable to encode InputGeoPointClass as nil")
tl_input_group_call_gen.go#L115: return fmt.Errorf("can't encode inputGroupCall#d8aa840f as nil")
tl_input_group_call_gen.go#L124: return fmt.Errorf("can't encode inputGroupCall#d8aa840f as nil")
tl_input_group_call_gen.go#L144: return fmt.Errorf("can't decode inputGroupCall#d8aa840f to nil")
tl_input_group_call_gen.go#L147: return fmt.Errorf("unable to decode inputGroupCall#d8aa840f: %w", err)
tl_input_group_call_gen.go#L155: return fmt.Errorf("can't decode inputGroupCall#d8aa840f to nil")
tl_input_group_call_gen.go#L160: return fmt.Errorf("unable to decode inputGroupCall#d8aa840f: field id: %w", err)
tl_input_group_call_gen.go#L167: return fmt.Errorf("unable to decode inputGroupCall#d8aa840f: field access_hash: %w", err)
tl_input_media_gen.go#L88: return fmt.Errorf("can't encode inputMediaEmpty#9664f57f as nil")
tl_input_media_gen.go#L97: return fmt.Errorf("can't encode inputMediaEmpty#9664f57f as nil")
tl_input_media_gen.go#L105: return fmt.Errorf("can't decode inputMediaEmpty#9664f57f to nil")
tl_input_media_gen.go#L108: return fmt.Errorf("unable to decode inputMediaEmpty#9664f57f: %w", err)
tl_input_media_gen.go#L116: return fmt.Errorf("can't decode inputMediaEmpty#9664f57f to nil")
tl_input_media_gen.go#L252: return fmt.Errorf("can't encode inputMediaUploadedPhoto#1e287d04 as nil")
tl_input_media_gen.go#L261: return fmt.Errorf("can't encode inputMediaUploadedPhoto#1e287d04 as nil")
tl_input_media_gen.go#L270: return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field flags: %w", err)
tl_input_media_gen.go#L273: return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field file is nil")
tl_input_media_gen.go#L276: return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field file: %w", err)
tl_input_media_gen.go#L282: return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field stickers element with index %d is nil", idx)
tl_input_media_gen.go#L285: return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field stickers element with index %d: %w", idx, err)
tl_input_media_gen.go#L341: return fmt.Errorf("can't decode inputMediaUploadedPhoto#1e287d04 to nil")
tl_input_media_gen.go#L344: return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: %w", err)
tl_input_media_gen.go#L352: return fmt.Errorf("can't decode inputMediaUploadedPhoto#1e287d04 to nil")
tl_input_media_gen.go#L356: return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field flags: %w", err)
tl_input_media_gen.go#L362: return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field file: %w", err)
tl_input_media_gen.go#L369: return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field stickers: %w", err)
tl_input_media_gen.go#L374: return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field stickers: %w", err)
tl_input_media_gen.go#L382: return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field ttl_seconds: %w", err)
tl_input_media_gen.go#L500: return fmt.Errorf("can't encode inputMediaPhoto#b3ba0635 as nil")
tl_input_media_gen.go#L509: return fmt.Errorf("can't encode inputMediaPhoto#b3ba0635 as nil")
tl_input_media_gen.go#L515: return fmt.Errorf("unable to encode inputMediaPhoto#b3ba0635: field flags: %w", err)
tl_input_media_gen.go#L518: return fmt.Errorf("unable to encode inputMediaPhoto#b3ba0635: field id is nil")
tl_input_media_gen.go#L521: return fmt.Errorf("unable to encode inputMediaPhoto#b3ba0635: field id: %w", err)
tl_input_media_gen.go#L552: return fmt.Errorf("can't decode inputMediaPhoto#b3ba0635 to nil")
tl_input_media_gen.go#L555: return fmt.Errorf("unable to decode inputMediaPhoto#b3ba0635: %w", err)
tl_input_media_gen.go#L563: return fmt.Errorf("can't decode inputMediaPhoto#b3ba0635 to nil")
tl_input_media_gen.go#L567: return fmt.Errorf("unable to decode inputMediaPhoto#b3ba0635: field flags: %w", err)
tl_input_media_gen.go#L573: return fmt.Errorf("unable to decode inputMediaPhoto#b3ba0635: field id: %w", err)
tl_input_media_gen.go#L580: return fmt.Errorf("unable to decode inputMediaPhoto#b3ba0635: field ttl_seconds: %w", err)
tl_input_media_gen.go#L673: return fmt.Errorf("can't encode inputMediaGeoPoint#f9c44144 as nil")
tl_input_media_gen.go#L682: return fmt.Errorf("can't encode inputMediaGeoPoint#f9c44144 as nil")
tl_input_media_gen.go#L685: return fmt.Errorf("unable to encode inputMediaGeoPoint#f9c44144: field geo_point is nil")
tl_input_media_gen.go#L688: return fmt.Errorf("unable to encode inputMediaGeoPoint#f9c44144: field geo_point: %w", err)
tl_input_media_gen.go#L701: return fmt.Errorf("can't decode inputMediaGeoPoint#f9c44144 to nil")
tl_input_media_gen.go#L704: return fmt.Errorf("unable to decode inputMediaGeoPoint#f9c44144: %w", err)
tl_input_media_gen.go#L712: return fmt.Errorf("can't decode inputMediaGeoPoint#f9c44144 to nil")
tl_input_media_gen.go#L717: return fmt.Errorf("unable to decode inputMediaGeoPoint#f9c44144: field geo_point: %w", err)
tl_input_media_gen.go#L843: return fmt.Errorf("can't encode inputMediaContact#f8ab7dfb as nil")
tl_input_media_gen.go#L852: return fmt.Errorf("can't encode inputMediaContact#f8ab7dfb as nil")
tl_input_media_gen.go#L884: return fmt.Errorf("can't decode inputMediaContact#f8ab7dfb to nil")
tl_input_media_gen.go#L887: return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: %w", err)
tl_input_media_gen.go#L895: return fmt.Errorf("can't decode inputMediaContact#f8ab7dfb to nil")
tl_input_media_gen.go#L900: return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: field phone_number: %w", err)
tl_input_media_gen.go#L907: return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: field first_name: %w", err)
tl_input_media_gen.go#L914: return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: field last_name: %w", err)
tl_input_media_gen.go#L921: return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: field vcard: %w", err)
tl_input_media_gen.go#L1123: return fmt.Errorf("can't encode inputMediaUploadedDocument#5b38c6c1 as nil")
tl_input_media_gen.go#L1132: return fmt.Errorf("can't encode inputMediaUploadedDocument#5b38c6c1 as nil")
tl_input_media_gen.go#L1150: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field flags: %w", err)
tl_input_media_gen.go#L1153: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field file is nil")
tl_input_media_gen.go#L1156: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field file: %w", err)
tl_input_media_gen.go#L1160: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field thumb is nil")
tl_input_media_gen.go#L1163: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field thumb: %w", err)
tl_input_media_gen.go#L1170: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field attributes element with index %d is nil", idx)
tl_input_media_gen.go#L1173: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field attributes element with index %d: %w", idx, err)
tl_input_media_gen.go#L1180: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field stickers element with index %d is nil", idx)
tl_input_media_gen.go#L1183: return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field stickers element with index %d: %w", idx, err)
tl_input_media_gen.go#L1301: return fmt.Errorf("can't decode inputMediaUploadedDocument#5b38c6c1 to nil")
tl_input_media_gen.go#L1304: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: %w", err)
tl_input_media_gen.go#L1312: return fmt.Errorf("can't decode inputMediaUploadedDocument#5b38c6c1 to nil")
tl_input_media_gen.go#L1316: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field flags: %w", err)
tl_input_media_gen.go#L1324: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field file: %w", err)
tl_input_media_gen.go#L1331: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field thumb: %w", err)
tl_input_media_gen.go#L1338: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field mime_type: %w", err)
tl_input_media_gen.go#L1345: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field attributes: %w", err)
tl_input_media_gen.go#L1350: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field attributes: %w", err)
tl_input_media_gen.go#L1358: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field stickers: %w", err)
tl_input_media_gen.go#L1363: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field stickers: %w", err)
tl_input_media_gen.go#L1371: return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field ttl_seconds: %w", err)
tl_input_media_gen.go#L1506: return fmt.Errorf("can't encode inputMediaDocument#33473058 as nil")
tl_input_media_gen.go#L1515: return fmt.Errorf("can't encode inputMediaDocument#33473058 as nil")
tl_input_media_gen.go#L1524: return fmt.Errorf("unable to encode inputMediaDocument#33473058: field flags: %w", err)
tl_input_media_gen.go#L1527: return fmt.Errorf("unable to encode inputMediaDocument#33473058: field id is nil")
tl_input_media_gen.go#L1530: return fmt.Errorf("unable to encode inputMediaDocument#33473058: field id: %w", err)
tl_input_media_gen.go#L1579: return fmt.Errorf("can't decode inputMediaDocument#33473058 to nil")
tl_input_media_gen.go#L1582: return fmt.Errorf("unable to decode inputMediaDocument#33473058: %w", err)
tl_input_media_gen.go#L1590: return fmt.Errorf("can't decode inputMediaDocument#33473058 to nil")
tl_input_media_gen.go#L1594: return fmt.Errorf("unable to decode inputMediaDocument#33473058: field flags: %w", err)
tl_input_media_gen.go#L1600: return fmt.Errorf("unable to decode inputMediaDocument#33473058: field id: %w", err)
tl_input_media_gen.go#L1607: return fmt.Errorf("unable to decode inputMediaDocument#33473058: field ttl_seconds: %w", err)
tl_input_media_gen.go#L1614: return fmt.Errorf("unable to decode inputMediaDocument#33473058: field query: %w", err)
tl_input_media_gen.go#L1762: return fmt.Errorf("can't encode inputMediaVenue#c13d1c11 as nil")
tl_input_media_gen.go#L1771: return fmt.Errorf("can't encode inputMediaVenue#c13d1c11 as nil")
tl_input_media_gen.go#L1774: return fmt.Errorf("unable to encode inputMediaVenue#c13d1c11: field geo_point is nil")
tl_input_media_gen.go#L1777: return fmt.Errorf("unable to encode inputMediaVenue#c13d1c11: field geo_point: %w", err)
tl_input_media_gen.go#L1820: return fmt.Errorf("can't decode inputMediaVenue#c13d1c11 to nil")
tl_input_media_gen.go#L1823: return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: %w", err)
tl_input_media_gen.go#L1831: return fmt.Errorf("can't decode inputMediaVenue#c13d1c11 to nil")
tl_input_media_gen.go#L1836: return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field geo_point: %w", err)
tl_input_media_gen.go#L1843: return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field title: %w", err)
tl_input_media_gen.go#L1850: return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field address: %w", err)
tl_input_media_gen.go#L1857: return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field provider: %w", err)
tl_input_media_gen.go#L1864: return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field venue_id: %w", err)
tl_input_media_gen.go#L1871: return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field venue_type: %w", err)
tl_input_media_gen.go#L1989: return fmt.Errorf("can't encode inputMediaPhotoExternal#e5bbfe1a as nil")
tl_input_media_gen.go#L1998: return fmt.Errorf("can't encode inputMediaPhotoExternal#e5bbfe1a as nil")
tl_input_media_gen.go#L2004: return fmt.Errorf("unable to encode inputMediaPhotoExternal#e5bbfe1a: field flags: %w", err)
tl_input_media_gen.go#L2036: return fmt.Errorf("can't decode inputMediaPhotoExternal#e5bbfe1a to nil")
tl_input_media_gen.go#L2039: return fmt.Errorf("unable to decode inputMediaPhotoExternal#e5bbfe1a: %w", err)
tl_input_media_gen.go#L2047: return fmt.Errorf("can't decode inputMediaPhotoExternal#e5bbfe1a to nil")
tl_input_media_gen.go#L2051: return fmt.Errorf("unable to decode inputMediaPhotoExternal#e5bbfe1a: field flags: %w", err)
tl_input_media_gen.go#L2057: return fmt.Errorf("unable to decode inputMediaPhotoExternal#e5bbfe1a: field url: %w", err)
tl_input_media_gen.go#L2064: return fmt.Errorf("unable to decode inputMediaPhotoExternal#e5bbfe1a: field ttl_seconds: %w", err)
tl_input_media_gen.go#L2182: return fmt.Errorf("can't encode inputMediaDocumentExternal#fb52dc99 as nil")
tl_input_media_gen.go#L2191: return fmt.Errorf("can't encode inputMediaDocumentExternal#fb52dc99 as nil")
tl_input_media_gen.go#L2197: return fmt.Errorf("unable to encode inputMediaDocumentExternal#fb52dc99: field flags: %w", err)
tl_input_media_gen.go#L2229: return fmt.Errorf("can't decode inputMediaDocumentExternal#fb52dc99 to nil")
tl_input_media_gen.go#L2232: return fmt.Errorf("unable to decode inputMediaDocumentExternal#fb52dc99: %w", err)
tl_input_media_gen.go#L2240: return fmt.Errorf("can't decode inputMediaDocumentExternal#fb52dc99 to nil")
tl_input_media_gen.go#L2244: return fmt.Errorf("unable to decode inputMediaDocumentExternal#fb52dc99: field flags: %w", err)
tl_input_media_gen.go#L2250: return fmt.Errorf("unable to decode inputMediaDocumentExternal#fb52dc99: field url: %w", err)
tl_input_media_gen.go#L2257: return fmt.Errorf("unable to decode inputMediaDocumentExternal#fb52dc99: field ttl_seconds: %w", err)
tl_input_media_gen.go#L2350: return fmt.Errorf("can't encode inputMediaGame#d33f43f3 as nil")
tl_input_media_gen.go#L2359: return fmt.Errorf("can't encode inputMediaGame#d33f43f3 as nil")
tl_input_media_gen.go#L2362: return fmt.Errorf("unable to encode inputMediaGame#d33f43f3: field id is nil")
tl_input_media_gen.go#L2365: return fmt.Errorf("unable to encode inputMediaGame#d33f43f3: field id: %w", err)
tl_input_media_gen.go#L2378: return fmt.Errorf("can't decode inputMediaGame#d33f43f3 to nil")
tl_input_media_gen.go#L2381: return fmt.Errorf("unable to decode inputMediaGame#d33f43f3: %w", err)
tl_input_media_gen.go#L2389: return fmt.Errorf("can't decode inputMediaGame#d33f43f3 to nil")
tl_input_media_gen.go#L2394: return fmt.Errorf("unable to decode inputMediaGame#d33f43f3: field id: %w", err)
tl_input_media_gen.go#L2611: return fmt.Errorf("can't encode inputMediaInvoice#f4e096c3 as nil")
tl_input_media_gen.go#L2620: return fmt.Errorf("can't encode inputMediaInvoice#f4e096c3 as nil")
tl_input_media_gen.go#L2632: return fmt.Errorf("unable to encode inputMediaInvoice#f4e096c3: field flags: %w", err)
tl_input_media_gen.go#L2638: return fmt.Errorf("unable to encode inputMediaInvoice#f4e096c3: field photo: %w", err)
tl_input_media_gen.go#L2642: return fmt.Errorf("unable to encode inputMediaInvoice#f4e096c3: field invoice: %w", err)
tl_input_media_gen.go#L2647: return fmt.Errorf("unable to encode inputMediaInvoice#f4e096c3: field provider_data: %w", err)
tl_input_media_gen.go#L2738: return fmt.Errorf("can't decode inputMediaInvoice#f4e096c3 to nil")
tl_input_media_gen.go#L2741: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: %w", err)
tl_input_media_gen.go#L2749: return fmt.Errorf("can't decode inputMediaInvoice#f4e096c3 to nil")
tl_input_media_gen.go#L2753: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field flags: %w", err)
tl_input_media_gen.go#L2761: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field title: %w", err)
tl_input_media_gen.go#L2768: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field description: %w", err)
tl_input_media_gen.go#L2774: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field photo: %w", err)
tl_input_media_gen.go#L2779: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field invoice: %w", err)
tl_input_media_gen.go#L2785: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field payload: %w", err)
tl_input_media_gen.go#L2792: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field provider: %w", err)
tl_input_media_gen.go#L2798: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field provider_data: %w", err)
tl_input_media_gen.go#L2804: return fmt.Errorf("unable to decode inputMediaInvoice#f4e096c3: field start_param: %w", err)
tl_input_media_gen.go#L2978: return fmt.Errorf("can't encode inputMediaGeoLive#971fa843 as nil")
tl_input_media_gen.go#L2987: return fmt.Errorf("can't encode inputMediaGeoLive#971fa843 as nil")
tl_input_media_gen.go#L3002: return fmt.Errorf("unable to encode inputMediaGeoLive#971fa843: field flags: %w", err)
tl_input_media_gen.go#L3005: return fmt.Errorf("unable to encode inputMediaGeoLive#971fa843: field geo_point is nil")
tl_input_media_gen.go#L3008: return fmt.Errorf("unable to encode inputMediaGeoLive#971fa843: field geo_point: %w", err)
tl_input_media_gen.go#L3091: return fmt.Errorf("can't decode inputMediaGeoLive#971fa843 to nil")
tl_input_media_gen.go#L3094: return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: %w", err)
tl_input_media_gen.go#L3102: return fmt.Errorf("can't decode inputMediaGeoLive#971fa843 to nil")
tl_input_media_gen.go#L3106: return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field flags: %w", err)
tl_input_media_gen.go#L3113: return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field geo_point: %w", err)
tl_input_media_gen.go#L3120: return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field heading: %w", err)
tl_input_media_gen.go#L3127: return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field period: %w", err)
tl_input_media_gen.go#L3134: return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field proximity_notification_radius: %w", err)
tl_input_media_gen.go#L3289: return fmt.Errorf("can't encode inputMediaPoll#f94e5f1 as nil")
tl_input_media_gen.go#L3298: return fmt.Errorf("can't encode inputMediaPoll#f94e5f1 as nil")
tl_input_media_gen.go#L3310: return fmt.Errorf("unable to encode inputMediaPoll#f94e5f1: field flags: %w", err)
tl_input_media_gen.go#L3313: return fmt.Errorf("unable to encode inputMediaPoll#f94e5f1: field poll: %w", err)
tl_input_media_gen.go#L3328: return fmt.Errorf("unable to encode inputMediaPoll#f94e5f1: field solution_entities element with index %d is nil", idx)
tl_input_media_gen.go#L3331: return fmt.Errorf("unable to encode inputMediaPoll#f94e5f1: field solution_entities element with index %d: %w", idx, err)
tl_input_media_gen.go#L3399: return fmt.Errorf("can't decode inputMediaPoll#f94e5f1 to nil")
tl_input_media_gen.go#L3402: return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: %w", err)
tl_input_media_gen.go#L3410: return fmt.Errorf("can't decode inputMediaPoll#f94e5f1 to nil")
tl_input_media_gen.go#L3414: return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field flags: %w", err)
tl_input_media_gen.go#L3419: return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field poll: %w", err)
tl_input_media_gen.go#L3425: return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field correct_answers: %w", err)
tl_input_media_gen.go#L3430: return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field correct_answers: %w", err)
tl_input_media_gen.go#L3438: return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field solution: %w", err)
tl_input_media_gen.go#L3445: return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field solution_entities: %w", err)
tl_input_media_gen.go#L3450: return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field solution_entities: %w", err)
tl_input_media_gen.go#L3547: return fmt.Errorf("can't encode inputMediaDice#e66fbf7b as nil")
tl_input_media_gen.go#L3556: return fmt.Errorf("can't encode inputMediaDice#e66fbf7b as nil")
tl_input_media_gen.go#L3570: return fmt.Errorf("can't decode inputMediaDice#e66fbf7b to nil")
tl_input_media_gen.go#L3573: return fmt.Errorf("unable to decode inputMediaDice#e66fbf7b: %w", err)
tl_input_media_gen.go#L3581: return fmt.Errorf("can't decode inputMediaDice#e66fbf7b to nil")
tl_input_media_gen.go#L3586: return fmt.Errorf("unable to decode inputMediaDice#e66fbf7b: field emoticon: %w", err)
tl_input_media_gen.go#L3663: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3670: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3677: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3684: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3691: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3698: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3705: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3712: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3719: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3726: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3733: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3740: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3747: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3754: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3761: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
tl_input_media_gen.go#L3765: return nil, fmt.Errorf("unable to decode InputMediaClass: %w", bin.NewUnexpectedID(id))
tl_input_media_gen.go#L3777: return fmt.Errorf("unable to decode InputMediaBox to nil")
tl_input_media_gen.go#L3781: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_media_gen.go#L3790: return fmt.Errorf("unable to encode InputMediaClass as nil")
tl_input_message_gen.go#L105: return fmt.Errorf("can't encode inputMessageID#a676a322 as nil")
tl_input_message_gen.go#L114: return fmt.Errorf("can't encode inputMessageID#a676a322 as nil")
tl_input_message_gen.go#L128: return fmt.Errorf("can't decode inputMessageID#a676a322 to nil")
tl_input_message_gen.go#L131: return fmt.Errorf("unable to decode inputMessageID#a676a322: %w", err)
tl_input_message_gen.go#L139: return fmt.Errorf("can't decode inputMessageID#a676a322 to nil")
tl_input_message_gen.go#L144: return fmt.Errorf("unable to decode inputMessageID#a676a322: field id: %w", err)
tl_input_message_gen.go#L237: return fmt.Errorf("can't encode inputMessageReplyTo#bad88395 as nil")
tl_input_message_gen.go#L246: return fmt.Errorf("can't encode inputMessageReplyTo#bad88395 as nil")
tl_input_message_gen.go#L260: return fmt.Errorf("can't decode inputMessageReplyTo#bad88395 to nil")
tl_input_message_gen.go#L263: return fmt.Errorf("unable to decode inputMessageReplyTo#bad88395: %w", err)
tl_input_message_gen.go#L271: return fmt.Errorf("can't decode inputMessageReplyTo#bad88395 to nil")
tl_input_message_gen.go#L276: return fmt.Errorf("unable to decode inputMessageReplyTo#bad88395: field id: %w", err)
tl_input_message_gen.go#L352: return fmt.Errorf("can't encode inputMessagePinned#86872538 as nil")
tl_input_message_gen.go#L361: return fmt.Errorf("can't encode inputMessagePinned#86872538 as nil")
tl_input_message_gen.go#L369: return fmt.Errorf("can't decode inputMessagePinned#86872538 to nil")
tl_input_message_gen.go#L372: return fmt.Errorf("unable to decode inputMessagePinned#86872538: %w", err)
tl_input_message_gen.go#L380: return fmt.Errorf("can't decode inputMessagePinned#86872538 to nil")
tl_input_message_gen.go#L483: return fmt.Errorf("can't encode inputMessageCallbackQuery#acfa1a7e as nil")
tl_input_message_gen.go#L492: return fmt.Errorf("can't encode inputMessageCallbackQuery#acfa1a7e as nil")
tl_input_message_gen.go#L512: return fmt.Errorf("can't decode inputMessageCallbackQuery#acfa1a7e to nil")
tl_input_message_gen.go#L515: return fmt.Errorf("unable to decode inputMessageCallbackQuery#acfa1a7e: %w", err)
tl_input_message_gen.go#L523: return fmt.Errorf("can't decode inputMessageCallbackQuery#acfa1a7e to nil")
tl_input_message_gen.go#L528: return fmt.Errorf("unable to decode inputMessageCallbackQuery#acfa1a7e: field id: %w", err)
tl_input_message_gen.go#L535: return fmt.Errorf("unable to decode inputMessageCallbackQuery#acfa1a7e: field query_id: %w", err)
tl_input_message_gen.go#L601: return nil, fmt.Errorf("unable to decode InputMessageClass: %w", err)
tl_input_message_gen.go#L608: return nil, fmt.Errorf("unable to decode InputMessageClass: %w", err)
tl_input_message_gen.go#L615: return nil, fmt.Errorf("unable to decode InputMessageClass: %w", err)
tl_input_message_gen.go#L622: return nil, fmt.Errorf("unable to decode InputMessageClass: %w", err)
tl_input_message_gen.go#L626: return nil, fmt.Errorf("unable to decode InputMessageClass: %w", bin.NewUnexpectedID(id))
tl_input_message_gen.go#L638: return fmt.Errorf("unable to decode InputMessageBox to nil")
tl_input_message_gen.go#L642: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_message_gen.go#L651: return fmt.Errorf("unable to encode InputMessageClass as nil")
tl_input_notify_peer_gen.go#L105: return fmt.Errorf("can't encode inputNotifyPeer#b8bc5b0c as nil")
tl_input_notify_peer_gen.go#L114: return fmt.Errorf("can't encode inputNotifyPeer#b8bc5b0c as nil")
tl_input_notify_peer_gen.go#L117: return fmt.Errorf("unable to encode inputNotifyPeer#b8bc5b0c: field peer is nil")
tl_input_notify_peer_gen.go#L120: return fmt.Errorf("unable to encode inputNotifyPeer#b8bc5b0c: field peer: %w", err)
tl_input_notify_peer_gen.go#L133: return fmt.Errorf("can't decode inputNotifyPeer#b8bc5b0c to nil")
tl_input_notify_peer_gen.go#L136: return fmt.Errorf("unable to decode inputNotifyPeer#b8bc5b0c: %w", err)
tl_input_notify_peer_gen.go#L144: return fmt.Errorf("can't decode inputNotifyPeer#b8bc5b0c to nil")
tl_input_notify_peer_gen.go#L149: return fmt.Errorf("unable to decode inputNotifyPeer#b8bc5b0c: field peer: %w", err)
tl_input_notify_peer_gen.go#L225: return fmt.Errorf("can't encode inputNotifyUsers#193b4417 as nil")
tl_input_notify_peer_gen.go#L234: return fmt.Errorf("can't encode inputNotifyUsers#193b4417 as nil")
tl_input_notify_peer_gen.go#L242: return fmt.Errorf("can't decode inputNotifyUsers#193b4417 to nil")
tl_input_notify_peer_gen.go#L245: return fmt.Errorf("unable to decode inputNotifyUsers#193b4417: %w", err)
tl_input_notify_peer_gen.go#L253: return fmt.Errorf("can't decode inputNotifyUsers#193b4417 to nil")
tl_input_notify_peer_gen.go#L327: return fmt.Errorf("can't encode inputNotifyChats#4a95e84e as nil")
tl_input_notify_peer_gen.go#L336: return fmt.Errorf("can't encode inputNotifyChats#4a95e84e as nil")
tl_input_notify_peer_gen.go#L344: return fmt.Errorf("can't decode inputNotifyChats#4a95e84e to nil")
tl_input_notify_peer_gen.go#L347: return fmt.Errorf("unable to decode inputNotifyChats#4a95e84e: %w", err)
tl_input_notify_peer_gen.go#L355: return fmt.Errorf("can't decode inputNotifyChats#4a95e84e to nil")
tl_input_notify_peer_gen.go#L432: return fmt.Errorf("can't encode inputNotifyBroadcasts#b1db7c7e as nil")
tl_input_notify_peer_gen.go#L441: return fmt.Errorf("can't encode inputNotifyBroadcasts#b1db7c7e as nil")
tl_input_notify_peer_gen.go#L449: return fmt.Errorf("can't decode inputNotifyBroadcasts#b1db7c7e to nil")
tl_input_notify_peer_gen.go#L452: return fmt.Errorf("unable to decode inputNotifyBroadcasts#b1db7c7e: %w", err)
tl_input_notify_peer_gen.go#L460: return fmt.Errorf("can't decode inputNotifyBroadcasts#b1db7c7e to nil")
tl_input_notify_peer_gen.go#L524: return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
tl_input_notify_peer_gen.go#L531: return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
tl_input_notify_peer_gen.go#L538: return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
tl_input_notify_peer_gen.go#L545: return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
tl_input_notify_peer_gen.go#L549: return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", bin.NewUnexpectedID(id))
tl_input_notify_peer_gen.go#L561: return fmt.Errorf("unable to decode InputNotifyPeerBox to nil")
tl_input_notify_peer_gen.go#L565: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_notify_peer_gen.go#L574: return fmt.Errorf("unable to encode InputNotifyPeerClass as nil")
tl_input_payment_credentials_gen.go#L116: return fmt.Errorf("can't encode inputPaymentCredentialsSaved#c10eb2cf as nil")
tl_input_payment_credentials_gen.go#L125: return fmt.Errorf("can't encode inputPaymentCredentialsSaved#c10eb2cf as nil")
tl_input_payment_credentials_gen.go#L145: return fmt.Errorf("can't decode inputPaymentCredentialsSaved#c10eb2cf to nil")
tl_input_payment_credentials_gen.go#L148: return fmt.Errorf("unable to decode inputPaymentCredentialsSaved#c10eb2cf: %w", err)
tl_input_payment_credentials_gen.go#L156: return fmt.Errorf("can't decode inputPaymentCredentialsSaved#c10eb2cf to nil")
tl_input_payment_credentials_gen.go#L161: return fmt.Errorf("unable to decode inputPaymentCredentialsSaved#c10eb2cf: field id: %w", err)
tl_input_payment_credentials_gen.go#L168: return fmt.Errorf("unable to decode inputPaymentCredentialsSaved#c10eb2cf: field tmp_password: %w", err)
tl_input_payment_credentials_gen.go#L281: return fmt.Errorf("can't encode inputPaymentCredentials#3417d728 as nil")
tl_input_payment_credentials_gen.go#L290: return fmt.Errorf("can't encode inputPaymentCredentials#3417d728 as nil")
tl_input_payment_credentials_gen.go#L296: return fmt.Errorf("unable to encode inputPaymentCredentials#3417d728: field flags: %w", err)
tl_input_payment_credentials_gen.go#L299: return fmt.Errorf("unable to encode inputPaymentCredentials#3417d728: field data: %w", err)
tl_input_payment_credentials_gen.go#L328: return fmt.Errorf("can't decode inputPaymentCredentials#3417d728 to nil")
tl_input_payment_credentials_gen.go#L331: return fmt.Errorf("unable to decode inputPaymentCredentials#3417d728: %w", err)
tl_input_payment_credentials_gen.go#L339: return fmt.Errorf("can't decode inputPaymentCredentials#3417d728 to nil")
tl_input_payment_credentials_gen.go#L343: return fmt.Errorf("unable to decode inputPaymentCredentials#3417d728: field flags: %w", err)
tl_input_payment_credentials_gen.go#L349: return fmt.Errorf("unable to decode inputPaymentCredentials#3417d728: field data: %w", err)
tl_input_payment_credentials_gen.go#L441: return fmt.Errorf("can't encode inputPaymentCredentialsApplePay#aa1c39f as nil")
tl_input_payment_credentials_gen.go#L450: return fmt.Errorf("can't encode inputPaymentCredentialsApplePay#aa1c39f as nil")
tl_input_payment_credentials_gen.go#L453: return fmt.Errorf("unable to encode inputPaymentCredentialsApplePay#aa1c39f: field payment_data: %w", err)
tl_input_payment_credentials_gen.go#L466: return fmt.Errorf("can't decode inputPaymentCredentialsApplePay#aa1c39f to nil")
tl_input_payment_credentials_gen.go#L469: return fmt.Errorf("unable to decode inputPaymentCredentialsApplePay#aa1c39f: %w", err)
tl_input_payment_credentials_gen.go#L477: return fmt.Errorf("can't decode inputPaymentCredentialsApplePay#aa1c39f to nil")
tl_input_payment_credentials_gen.go#L481: return fmt.Errorf("unable to decode inputPaymentCredentialsApplePay#aa1c39f: field payment_data: %w", err)
tl_input_payment_credentials_gen.go#L572: return fmt.Errorf("can't encode inputPaymentCredentialsGooglePay#8ac32801 as nil")
tl_input_payment_credentials_gen.go#L581: return fmt.Errorf("can't encode inputPaymentCredentialsGooglePay#8ac32801 as nil")
tl_input_payment_credentials_gen.go#L584: return fmt.Errorf("unable to encode inputPaymentCredentialsGooglePay#8ac32801: field payment_token: %w", err)
tl_input_payment_credentials_gen.go#L597: return fmt.Errorf("can't decode inputPaymentCredentialsGooglePay#8ac32801 to nil")
tl_input_payment_credentials_gen.go#L600: return fmt.Errorf("unable to decode inputPaymentCredentialsGooglePay#8ac32801: %w", err)
tl_input_payment_credentials_gen.go#L608: return fmt.Errorf("can't decode inputPaymentCredentialsGooglePay#8ac32801 to nil")
tl_input_payment_credentials_gen.go#L612: return fmt.Errorf("unable to decode inputPaymentCredentialsGooglePay#8ac32801: field payment_token: %w", err)
tl_input_payment_credentials_gen.go#L677: return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", err)
tl_input_payment_credentials_gen.go#L684: return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", err)
tl_input_payment_credentials_gen.go#L691: return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", err)
tl_input_payment_credentials_gen.go#L698: return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", err)
tl_input_payment_credentials_gen.go#L702: return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", bin.NewUnexpectedID(id))
tl_input_payment_credentials_gen.go#L714: return fmt.Errorf("unable to decode InputPaymentCredentialsBox to nil")
tl_input_payment_credentials_gen.go#L718: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_payment_credentials_gen.go#L727: return fmt.Errorf("unable to encode InputPaymentCredentialsClass as nil")
tl_input_peer_gen.go#L88: return fmt.Errorf("can't encode inputPeerEmpty#7f3b18ea as nil")
tl_input_peer_gen.go#L97: return fmt.Errorf("can't encode inputPeerEmpty#7f3b18ea as nil")
tl_input_peer_gen.go#L105: return fmt.Errorf("can't decode inputPeerEmpty#7f3b18ea to nil")
tl_input_peer_gen.go#L108: return fmt.Errorf("unable to decode inputPeerEmpty#7f3b18ea: %w", err)
tl_input_peer_gen.go#L116: return fmt.Errorf("can't decode inputPeerEmpty#7f3b18ea to nil")
tl_input_peer_gen.go#L190: return fmt.Errorf("can't encode inputPeerSelf#7da07ec9 as nil")
tl_input_peer_gen.go#L199: return fmt.Errorf("can't encode inputPeerSelf#7da07ec9 as nil")
tl_input_peer_gen.go#L207: return fmt.Errorf("can't decode inputPeerSelf#7da07ec9 to nil")
tl_input_peer_gen.go#L210: return fmt.Errorf("unable to decode inputPeerSelf#7da07ec9: %w", err)
tl_input_peer_gen.go#L218: return fmt.Errorf("can't decode inputPeerSelf#7da07ec9 to nil")
tl_input_peer_gen.go#L309: return fmt.Errorf("can't encode inputPeerChat#179be863 as nil")
tl_input_peer_gen.go#L318: return fmt.Errorf("can't encode inputPeerChat#179be863 as nil")
tl_input_peer_gen.go#L332: return fmt.Errorf("can't decode inputPeerChat#179be863 to nil")
tl_input_peer_gen.go#L335: return fmt.Errorf("unable to decode inputPeerChat#179be863: %w", err)
tl_input_peer_gen.go#L343: return fmt.Errorf("can't decode inputPeerChat#179be863 to nil")
tl_input_peer_gen.go#L348: return fmt.Errorf("unable to decode inputPeerChat#179be863: field chat_id: %w", err)
tl_input_peer_gen.go#L455: return fmt.Errorf("can't encode inputPeerUser#7b8e7de6 as nil")
tl_input_peer_gen.go#L464: return fmt.Errorf("can't encode inputPeerUser#7b8e7de6 as nil")
tl_input_peer_gen.go#L484: return fmt.Errorf("can't decode inputPeerUser#7b8e7de6 to nil")
tl_input_peer_gen.go#L487: return fmt.Errorf("unable to decode inputPeerUser#7b8e7de6: %w", err)
tl_input_peer_gen.go#L495: return fmt.Errorf("can't decode inputPeerUser#7b8e7de6 to nil")
tl_input_peer_gen.go#L500: return fmt.Errorf("unable to decode inputPeerUser#7b8e7de6: field user_id: %w", err)
tl_input_peer_gen.go#L507: return fmt.Errorf("unable to decode inputPeerUser#7b8e7de6: field access_hash: %w", err)
tl_input_peer_gen.go#L614: return fmt.Errorf("can't encode inputPeerChannel#20adaef8 as nil")
tl_input_peer_gen.go#L623: return fmt.Errorf("can't encode inputPeerChannel#20adaef8 as nil")
tl_input_peer_gen.go#L643: return fmt.Errorf("can't decode inputPeerChannel#20adaef8 to nil")
tl_input_peer_gen.go#L646: return fmt.Errorf("unable to decode inputPeerChannel#20adaef8: %w", err)
tl_input_peer_gen.go#L654: return fmt.Errorf("can't decode inputPeerChannel#20adaef8 to nil")
tl_input_peer_gen.go#L659: return fmt.Errorf("unable to decode inputPeerChannel#20adaef8: field channel_id: %w", err)
tl_input_peer_gen.go#L666: return fmt.Errorf("unable to decode inputPeerChannel#20adaef8: field access_hash: %w", err)
tl_input_peer_gen.go#L784: return fmt.Errorf("can't encode inputPeerUserFromMessage#17bae2e6 as nil")
tl_input_peer_gen.go#L793: return fmt.Errorf("can't encode inputPeerUserFromMessage#17bae2e6 as nil")
tl_input_peer_gen.go#L796: return fmt.Errorf("unable to encode inputPeerUserFromMessage#17bae2e6: field peer is nil")
tl_input_peer_gen.go#L799: return fmt.Errorf("unable to encode inputPeerUserFromMessage#17bae2e6: field peer: %w", err)
tl_input_peer_gen.go#L824: return fmt.Errorf("can't decode inputPeerUserFromMessage#17bae2e6 to nil")
tl_input_peer_gen.go#L827: return fmt.Errorf("unable to decode inputPeerUserFromMessage#17bae2e6: %w", err)
tl_input_peer_gen.go#L835: return fmt.Errorf("can't decode inputPeerUserFromMessage#17bae2e6 to nil")
tl_input_peer_gen.go#L840: return fmt.Errorf("unable to decode inputPeerUserFromMessage#17bae2e6: field peer: %w", err)
tl_input_peer_gen.go#L847: return fmt.Errorf("unable to decode inputPeerUserFromMessage#17bae2e6: field msg_id: %w", err)
tl_input_peer_gen.go#L854: return fmt.Errorf("unable to decode inputPeerUserFromMessage#17bae2e6: field user_id: %w", err)
tl_input_peer_gen.go#L972: return fmt.Errorf("can't encode inputPeerChannelFromMessage#9c95f7bb as nil")
tl_input_peer_gen.go#L981: return fmt.Errorf("can't encode inputPeerChannelFromMessage#9c95f7bb as nil")
tl_input_peer_gen.go#L984: return fmt.Errorf("unable to encode inputPeerChannelFromMessage#9c95f7bb: field peer is nil")
tl_input_peer_gen.go#L987: return fmt.Errorf("unable to encode inputPeerChannelFromMessage#9c95f7bb: field peer: %w", err)
tl_input_peer_gen.go#L1012: return fmt.Errorf("can't decode inputPeerChannelFromMessage#9c95f7bb to nil")
tl_input_peer_gen.go#L1015: return fmt.Errorf("unable to decode inputPeerChannelFromMessage#9c95f7bb: %w", err)
tl_input_peer_gen.go#L1023: return fmt.Errorf("can't decode inputPeerChannelFromMessage#9c95f7bb to nil")
tl_input_peer_gen.go#L1028: return fmt.Errorf("unable to decode inputPeerChannelFromMessage#9c95f7bb: field peer: %w", err)
tl_input_peer_gen.go#L1035: return fmt.Errorf("unable to decode inputPeerChannelFromMessage#9c95f7bb: field msg_id: %w", err)
tl_input_peer_gen.go#L1042: return fmt.Errorf("unable to decode inputPeerChannelFromMessage#9c95f7bb: field channel_id: %w", err)
tl_input_peer_gen.go#L1111: return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
tl_input_peer_gen.go#L1118: return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
tl_input_peer_gen.go#L1125: return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
tl_input_peer_gen.go#L1132: return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
tl_input_peer_gen.go#L1139: return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
tl_input_peer_gen.go#L1146: return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
tl_input_peer_gen.go#L1153: return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
tl_input_peer_gen.go#L1157: return nil, fmt.Errorf("unable to decode InputPeerClass: %w", bin.NewUnexpectedID(id))
tl_input_peer_gen.go#L1169: return fmt.Errorf("unable to decode InputPeerBox to nil")
tl_input_peer_gen.go#L1173: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_peer_gen.go#L1182: return fmt.Errorf("unable to encode InputPeerClass as nil")
tl_input_peer_notify_settings_gen.go#L170: return fmt.Errorf("can't encode inputPeerNotifySettings#9c3d198e as nil")
tl_input_peer_notify_settings_gen.go#L179: return fmt.Errorf("can't encode inputPeerNotifySettings#9c3d198e as nil")
tl_input_peer_notify_settings_gen.go#L194: return fmt.Errorf("unable to encode inputPeerNotifySettings#9c3d198e: field flags: %w", err)
tl_input_peer_notify_settings_gen.go#L274: return fmt.Errorf("can't decode inputPeerNotifySettings#9c3d198e to nil")
tl_input_peer_notify_settings_gen.go#L277: return fmt.Errorf("unable to decode inputPeerNotifySettings#9c3d198e: %w", err)
tl_input_peer_notify_settings_gen.go#L285: return fmt.Errorf("can't decode inputPeerNotifySettings#9c3d198e to nil")
tl_input_peer_notify_settings_gen.go#L289: return fmt.Errorf("unable to decode inputPeerNotifySettings#9c3d198e: field flags: %w", err)
tl_input_peer_notify_settings_gen.go#L295: return fmt.Errorf("unable to decode inputPeerNotifySettings#9c3d198e: field show_previews: %w", err)
tl_input_peer_notify_settings_gen.go#L302: return fmt.Errorf("unable to decode inputPeerNotifySettings#9c3d198e: field silent: %w", err)
tl_input_peer_notify_settings_gen.go#L309: return fmt.Errorf("unable to decode inputPeerNotifySettings#9c3d198e: field mute_until: %w", err)
tl_input_peer_notify_settings_gen.go#L316: return fmt.Errorf("unable to decode inputPeerNotifySettings#9c3d198e: field sound: %w", err)
tl_input_phone_call_gen.go#L116: return fmt.Errorf("can't encode inputPhoneCall#1e36fded as nil")
tl_input_phone_call_gen.go#L125: return fmt.Errorf("can't encode inputPhoneCall#1e36fded as nil")
tl_input_phone_call_gen.go#L145: return fmt.Errorf("can't decode inputPhoneCall#1e36fded to nil")
tl_input_phone_call_gen.go#L148: return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: %w", err)
tl_input_phone_call_gen.go#L156: return fmt.Errorf("can't decode inputPhoneCall#1e36fded to nil")
tl_input_phone_call_gen.go#L161: return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: field id: %w", err)
tl_input_phone_call_gen.go#L168: return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: field access_hash: %w", err)
tl_input_phone_contact_gen.go#L143: return fmt.Errorf("can't encode inputPhoneContact#f392b7f4 as nil")
tl_input_phone_contact_gen.go#L152: return fmt.Errorf("can't encode inputPhoneContact#f392b7f4 as nil")
tl_input_phone_contact_gen.go#L184: return fmt.Errorf("can't decode inputPhoneContact#f392b7f4 to nil")
tl_input_phone_contact_gen.go#L187: return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: %w", err)
tl_input_phone_contact_gen.go#L195: return fmt.Errorf("can't decode inputPhoneContact#f392b7f4 to nil")
tl_input_phone_contact_gen.go#L200: return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: field client_id: %w", err)
tl_input_phone_contact_gen.go#L207: return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: field phone: %w", err)
tl_input_phone_contact_gen.go#L214: return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: field first_name: %w", err)
tl_input_phone_contact_gen.go#L221: return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: field last_name: %w", err)
tl_input_photo_gen.go#L88: return fmt.Errorf("can't encode inputPhotoEmpty#1cd7bf0d as nil")
tl_input_photo_gen.go#L97: return fmt.Errorf("can't encode inputPhotoEmpty#1cd7bf0d as nil")
tl_input_photo_gen.go#L105: return fmt.Errorf("can't decode inputPhotoEmpty#1cd7bf0d to nil")
tl_input_photo_gen.go#L108: return fmt.Errorf("unable to decode inputPhotoEmpty#1cd7bf0d: %w", err)
tl_input_photo_gen.go#L116: return fmt.Errorf("can't decode inputPhotoEmpty#1cd7bf0d to nil")
tl_input_photo_gen.go#L235: return fmt.Errorf("can't encode inputPhoto#3bb3b94a as nil")
tl_input_photo_gen.go#L244: return fmt.Errorf("can't encode inputPhoto#3bb3b94a as nil")
tl_input_photo_gen.go#L270: return fmt.Errorf("can't decode inputPhoto#3bb3b94a to nil")
tl_input_photo_gen.go#L273: return fmt.Errorf("unable to decode inputPhoto#3bb3b94a: %w", err)
tl_input_photo_gen.go#L281: return fmt.Errorf("can't decode inputPhoto#3bb3b94a to nil")
tl_input_photo_gen.go#L286: return fmt.Errorf("unable to decode inputPhoto#3bb3b94a: field id: %w", err)
tl_input_photo_gen.go#L293: return fmt.Errorf("unable to decode inputPhoto#3bb3b94a: field access_hash: %w", err)
tl_input_photo_gen.go#L300: return fmt.Errorf("unable to decode inputPhoto#3bb3b94a: field file_reference: %w", err)
tl_input_photo_gen.go#L387: return nil, fmt.Errorf("unable to decode InputPhotoClass: %w", err)
tl_input_photo_gen.go#L394: return nil, fmt.Errorf("unable to decode InputPhotoClass: %w", err)
tl_input_photo_gen.go#L398: return nil, fmt.Errorf("unable to decode InputPhotoClass: %w", bin.NewUnexpectedID(id))
tl_input_photo_gen.go#L410: return fmt.Errorf("unable to decode InputPhotoBox to nil")
tl_input_photo_gen.go#L414: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_photo_gen.go#L423: return fmt.Errorf("unable to encode InputPhotoClass as nil")
tl_input_privacy_key_gen.go#L88: return fmt.Errorf("can't encode inputPrivacyKeyStatusTimestamp#4f96cb18 as nil")
tl_input_privacy_key_gen.go#L97: return fmt.Errorf("can't encode inputPrivacyKeyStatusTimestamp#4f96cb18 as nil")
tl_input_privacy_key_gen.go#L105: return fmt.Errorf("can't decode inputPrivacyKeyStatusTimestamp#4f96cb18 to nil")
tl_input_privacy_key_gen.go#L108: return fmt.Errorf("unable to decode inputPrivacyKeyStatusTimestamp#4f96cb18: %w", err)
tl_input_privacy_key_gen.go#L116: return fmt.Errorf("can't decode inputPrivacyKeyStatusTimestamp#4f96cb18 to nil")
tl_input_privacy_key_gen.go#L190: return fmt.Errorf("can't encode inputPrivacyKeyChatInvite#bdfb0426 as nil")
tl_input_privacy_key_gen.go#L199: return fmt.Errorf("can't encode inputPrivacyKeyChatInvite#bdfb0426 as nil")
tl_input_privacy_key_gen.go#L207: return fmt.Errorf("can't decode inputPrivacyKeyChatInvite#bdfb0426 to nil")
tl_input_privacy_key_gen.go#L210: return fmt.Errorf("unable to decode inputPrivacyKeyChatInvite#bdfb0426: %w", err)
tl_input_privacy_key_gen.go#L218: return fmt.Errorf("can't decode inputPrivacyKeyChatInvite#bdfb0426 to nil")
tl_input_privacy_key_gen.go#L292: return fmt.Errorf("can't encode inputPrivacyKeyPhoneCall#fabadc5f as nil")
tl_input_privacy_key_gen.go#L301: return fmt.Errorf("can't encode inputPrivacyKeyPhoneCall#fabadc5f as nil")
tl_input_privacy_key_gen.go#L309: return fmt.Errorf("can't decode inputPrivacyKeyPhoneCall#fabadc5f to nil")
tl_input_privacy_key_gen.go#L312: return fmt.Errorf("unable to decode inputPrivacyKeyPhoneCall#fabadc5f: %w", err)
tl_input_privacy_key_gen.go#L320: return fmt.Errorf("can't decode inputPrivacyKeyPhoneCall#fabadc5f to nil")
tl_input_privacy_key_gen.go#L394: return fmt.Errorf("can't encode inputPrivacyKeyPhoneP2P#db9e70d2 as nil")
tl_input_privacy_key_gen.go#L403: return fmt.Errorf("can't encode inputPrivacyKeyPhoneP2P#db9e70d2 as nil")
tl_input_privacy_key_gen.go#L411: return fmt.Errorf("can't decode inputPrivacyKeyPhoneP2P#db9e70d2 to nil")
tl_input_privacy_key_gen.go#L414: return fmt.Errorf("unable to decode inputPrivacyKeyPhoneP2P#db9e70d2: %w", err)
tl_input_privacy_key_gen.go#L422: return fmt.Errorf("can't decode inputPrivacyKeyPhoneP2P#db9e70d2 to nil")
tl_input_privacy_key_gen.go#L499: return fmt.Errorf("can't encode inputPrivacyKeyForwards#a4dd4c08 as nil")
tl_input_privacy_key_gen.go#L508: return fmt.Errorf("can't encode inputPrivacyKeyForwards#a4dd4c08 as nil")
tl_input_privacy_key_gen.go#L516: return fmt.Errorf("can't decode inputPrivacyKeyForwards#a4dd4c08 to nil")
tl_input_privacy_key_gen.go#L519: return fmt.Errorf("unable to decode inputPrivacyKeyForwards#a4dd4c08: %w", err)
tl_input_privacy_key_gen.go#L527: return fmt.Errorf("can't decode inputPrivacyKeyForwards#a4dd4c08 to nil")
tl_input_privacy_key_gen.go#L601: return fmt.Errorf("can't encode inputPrivacyKeyProfilePhoto#5719bacc as nil")
tl_input_privacy_key_gen.go#L610: return fmt.Errorf("can't encode inputPrivacyKeyProfilePhoto#5719bacc as nil")
tl_input_privacy_key_gen.go#L618: return fmt.Errorf("can't decode inputPrivacyKeyProfilePhoto#5719bacc to nil")
tl_input_privacy_key_gen.go#L621: return fmt.Errorf("unable to decode inputPrivacyKeyProfilePhoto#5719bacc: %w", err)
tl_input_privacy_key_gen.go#L629: return fmt.Errorf("can't decode inputPrivacyKeyProfilePhoto#5719bacc to nil")
tl_input_privacy_key_gen.go#L703: return fmt.Errorf("can't encode inputPrivacyKeyPhoneNumber#352dafa as nil")
tl_input_privacy_key_gen.go#L712: return fmt.Errorf("can't encode inputPrivacyKeyPhoneNumber#352dafa as nil")
tl_input_privacy_key_gen.go#L720: return fmt.Errorf("can't decode inputPrivacyKeyPhoneNumber#352dafa to nil")
tl_input_privacy_key_gen.go#L723: return fmt.Errorf("unable to decode inputPrivacyKeyPhoneNumber#352dafa: %w", err)
tl_input_privacy_key_gen.go#L731: return fmt.Errorf("can't decode inputPrivacyKeyPhoneNumber#352dafa to nil")
tl_input_privacy_key_gen.go#L805: return fmt.Errorf("can't encode inputPrivacyKeyAddedByPhone#d1219bdd as nil")
tl_input_privacy_key_gen.go#L814: return fmt.Errorf("can't encode inputPrivacyKeyAddedByPhone#d1219bdd as nil")
tl_input_privacy_key_gen.go#L822: return fmt.Errorf("can't decode inputPrivacyKeyAddedByPhone#d1219bdd to nil")
tl_input_privacy_key_gen.go#L825: return fmt.Errorf("unable to decode inputPrivacyKeyAddedByPhone#d1219bdd: %w", err)
tl_input_privacy_key_gen.go#L833: return fmt.Errorf("can't decode inputPrivacyKeyAddedByPhone#d1219bdd to nil")
tl_input_privacy_key_gen.go#L901: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
tl_input_privacy_key_gen.go#L908: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
tl_input_privacy_key_gen.go#L915: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
tl_input_privacy_key_gen.go#L922: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
tl_input_privacy_key_gen.go#L929: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
tl_input_privacy_key_gen.go#L936: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
tl_input_privacy_key_gen.go#L943: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
tl_input_privacy_key_gen.go#L950: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
tl_input_privacy_key_gen.go#L954: return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", bin.NewUnexpectedID(id))
tl_input_privacy_key_gen.go#L966: return fmt.Errorf("unable to decode InputPrivacyKeyBox to nil")
tl_input_privacy_key_gen.go#L970: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_privacy_key_gen.go#L979: return fmt.Errorf("unable to encode InputPrivacyKeyClass as nil")
tl_input_privacy_rule_gen.go#L88: return fmt.Errorf("can't encode inputPrivacyValueAllowContacts#d09e07b as nil")
tl_input_privacy_rule_gen.go#L97: return fmt.Errorf("can't encode inputPrivacyValueAllowContacts#d09e07b as nil")
tl_input_privacy_rule_gen.go#L105: return fmt.Errorf("can't decode inputPrivacyValueAllowContacts#d09e07b to nil")
tl_input_privacy_rule_gen.go#L108: return fmt.Errorf("unable to decode inputPrivacyValueAllowContacts#d09e07b: %w", err)
tl_input_privacy_rule_gen.go#L116: return fmt.Errorf("can't decode inputPrivacyValueAllowContacts#d09e07b to nil")
tl_input_privacy_rule_gen.go#L190: return fmt.Errorf("can't encode inputPrivacyValueAllowAll#184b35ce as nil")
tl_input_privacy_rule_gen.go#L199: return fmt.Errorf("can't encode inputPrivacyValueAllowAll#184b35ce as nil")
tl_input_privacy_rule_gen.go#L207: return fmt.Errorf("can't decode inputPrivacyValueAllowAll#184b35ce to nil")
tl_input_privacy_rule_gen.go#L210: return fmt.Errorf("unable to decode inputPrivacyValueAllowAll#184b35ce: %w", err)
tl_input_privacy_rule_gen.go#L218: return fmt.Errorf("can't decode inputPrivacyValueAllowAll#184b35ce to nil")
tl_input_privacy_rule_gen.go#L309: return fmt.Errorf("can't encode inputPrivacyValueAllowUsers#131cc67f as nil")
tl_input_privacy_rule_gen.go#L318: return fmt.Errorf("can't encode inputPrivacyValueAllowUsers#131cc67f as nil")
tl_input_privacy_rule_gen.go#L323: return fmt.Errorf("unable to encode inputPrivacyValueAllowUsers#131cc67f: field users element with index %d is nil", idx)
tl_input_privacy_rule_gen.go#L326: return fmt.Errorf("unable to encode inputPrivacyValueAllowUsers#131cc67f: field users element with index %d: %w", idx, err)
tl_input_privacy_rule_gen.go#L345: return fmt.Errorf("can't decode inputPrivacyValueAllowUsers#131cc67f to nil")
tl_input_privacy_rule_gen.go#L348: return fmt.Errorf("unable to decode inputPrivacyValueAllowUsers#131cc67f: %w", err)
tl_input_privacy_rule_gen.go#L356: return fmt.Errorf("can't decode inputPrivacyValueAllowUsers#131cc67f to nil")
tl_input_privacy_rule_gen.go#L361: return fmt.Errorf("unable to decode inputPrivacyValueAllowUsers#131cc67f: field users: %w", err)
tl_input_privacy_rule_gen.go#L366: return fmt.Errorf("unable to decode inputPrivacyValueAllowUsers#131cc67f: field users: %w", err)
tl_input_privacy_rule_gen.go#L443: return fmt.Errorf("can't encode inputPrivacyValueDisallowContacts#ba52007 as nil")
tl_input_privacy_rule_gen.go#L452: return fmt.Errorf("can't encode inputPrivacyValueDisallowContacts#ba52007 as nil")
tl_input_privacy_rule_gen.go#L460: return fmt.Errorf("can't decode inputPrivacyValueDisallowContacts#ba52007 to nil")
tl_input_privacy_rule_gen.go#L463: return fmt.Errorf("unable to decode inputPrivacyValueDisallowContacts#ba52007: %w", err)
tl_input_privacy_rule_gen.go#L471: return fmt.Errorf("can't decode inputPrivacyValueDisallowContacts#ba52007 to nil")
tl_input_privacy_rule_gen.go#L545: return fmt.Errorf("can't encode inputPrivacyValueDisallowAll#d66b66c9 as nil")
tl_input_privacy_rule_gen.go#L554: return fmt.Errorf("can't encode inputPrivacyValueDisallowAll#d66b66c9 as nil")
tl_input_privacy_rule_gen.go#L562: return fmt.Errorf("can't decode inputPrivacyValueDisallowAll#d66b66c9 to nil")
tl_input_privacy_rule_gen.go#L565: return fmt.Errorf("unable to decode inputPrivacyValueDisallowAll#d66b66c9: %w", err)
tl_input_privacy_rule_gen.go#L573: return fmt.Errorf("can't decode inputPrivacyValueDisallowAll#d66b66c9 to nil")
tl_input_privacy_rule_gen.go#L664: return fmt.Errorf("can't encode inputPrivacyValueDisallowUsers#90110467 as nil")
tl_input_privacy_rule_gen.go#L673: return fmt.Errorf("can't encode inputPrivacyValueDisallowUsers#90110467 as nil")
tl_input_privacy_rule_gen.go#L678: return fmt.Errorf("unable to encode inputPrivacyValueDisallowUsers#90110467: field users element with index %d is nil", idx)
tl_input_privacy_rule_gen.go#L681: return fmt.Errorf("unable to encode inputPrivacyValueDisallowUsers#90110467: field users element with index %d: %w", idx, err)
tl_input_privacy_rule_gen.go#L700: return fmt.Errorf("can't decode inputPrivacyValueDisallowUsers#90110467 to nil")
tl_input_privacy_rule_gen.go#L703: return fmt.Errorf("unable to decode inputPrivacyValueDisallowUsers#90110467: %w", err)
tl_input_privacy_rule_gen.go#L711: return fmt.Errorf("can't decode inputPrivacyValueDisallowUsers#90110467 to nil")
tl_input_privacy_rule_gen.go#L716: return fmt.Errorf("unable to decode inputPrivacyValueDisallowUsers#90110467: field users: %w", err)
tl_input_privacy_rule_gen.go#L721: return fmt.Errorf("unable to decode inputPrivacyValueDisallowUsers#90110467: field users: %w", err)
tl_input_privacy_rule_gen.go#L815: return fmt.Errorf("can't encode inputPrivacyValueAllowChatParticipants#4c81c1ba as nil")
tl_input_privacy_rule_gen.go#L824: return fmt.Errorf("can't encode inputPrivacyValueAllowChatParticipants#4c81c1ba as nil")
tl_input_privacy_rule_gen.go#L841: return fmt.Errorf("can't decode inputPrivacyValueAllowChatParticipants#4c81c1ba to nil")
tl_input_privacy_rule_gen.go#L844: return fmt.Errorf("unable to decode inputPrivacyValueAllowChatParticipants#4c81c1ba: %w", err)
tl_input_privacy_rule_gen.go#L852: return fmt.Errorf("can't decode inputPrivacyValueAllowChatParticipants#4c81c1ba to nil")
tl_input_privacy_rule_gen.go#L857: return fmt.Errorf("unable to decode inputPrivacyValueAllowChatParticipants#4c81c1ba: field chats: %w", err)
tl_input_privacy_rule_gen.go#L862: return fmt.Errorf("unable to decode inputPrivacyValueAllowChatParticipants#4c81c1ba: field chats: %w", err)
tl_input_privacy_rule_gen.go#L956: return fmt.Errorf("can't encode inputPrivacyValueDisallowChatParticipants#d82363af as nil")
tl_input_privacy_rule_gen.go#L965: return fmt.Errorf("can't encode inputPrivacyValueDisallowChatParticipants#d82363af as nil")
tl_input_privacy_rule_gen.go#L982: return fmt.Errorf("can't decode inputPrivacyValueDisallowChatParticipants#d82363af to nil")
tl_input_privacy_rule_gen.go#L985: return fmt.Errorf("unable to decode inputPrivacyValueDisallowChatParticipants#d82363af: %w", err)
tl_input_privacy_rule_gen.go#L993: return fmt.Errorf("can't decode inputPrivacyValueDisallowChatParticipants#d82363af to nil")
tl_input_privacy_rule_gen.go#L998: return fmt.Errorf("unable to decode inputPrivacyValueDisallowChatParticipants#d82363af: field chats: %w", err)
tl_input_privacy_rule_gen.go#L1003: return fmt.Errorf("unable to decode inputPrivacyValueDisallowChatParticipants#d82363af: field chats: %w", err)
tl_input_privacy_rule_gen.go#L1074: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
tl_input_privacy_rule_gen.go#L1081: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
tl_input_privacy_rule_gen.go#L1088: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
tl_input_privacy_rule_gen.go#L1095: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
tl_input_privacy_rule_gen.go#L1102: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
tl_input_privacy_rule_gen.go#L1109: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
tl_input_privacy_rule_gen.go#L1116: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
tl_input_privacy_rule_gen.go#L1123: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
tl_input_privacy_rule_gen.go#L1127: return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", bin.NewUnexpectedID(id))
tl_input_privacy_rule_gen.go#L1139: return fmt.Errorf("unable to decode InputPrivacyRuleBox to nil")
tl_input_privacy_rule_gen.go#L1143: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_privacy_rule_gen.go#L1152: return fmt.Errorf("unable to encode InputPrivacyRuleClass as nil")
tl_input_secure_file_gen.go#L152: return fmt.Errorf("can't encode inputSecureFileUploaded#3334b0f0 as nil")
tl_input_secure_file_gen.go#L161: return fmt.Errorf("can't encode inputSecureFileUploaded#3334b0f0 as nil")
tl_input_secure_file_gen.go#L199: return fmt.Errorf("can't decode inputSecureFileUploaded#3334b0f0 to nil")
tl_input_secure_file_gen.go#L202: return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: %w", err)
tl_input_secure_file_gen.go#L210: return fmt.Errorf("can't decode inputSecureFileUploaded#3334b0f0 to nil")
tl_input_secure_file_gen.go#L215: return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field id: %w", err)
tl_input_secure_file_gen.go#L222: return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field parts: %w", err)
tl_input_secure_file_gen.go#L229: return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field md5_checksum: %w", err)
tl_input_secure_file_gen.go#L236: return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field file_hash: %w", err)
tl_input_secure_file_gen.go#L243: return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field secret: %w", err)
tl_input_secure_file_gen.go#L351: return fmt.Errorf("can't encode inputSecureFile#5367e5be as nil")
tl_input_secure_file_gen.go#L360: return fmt.Errorf("can't encode inputSecureFile#5367e5be as nil")
tl_input_secure_file_gen.go#L380: return fmt.Errorf("can't decode inputSecureFile#5367e5be to nil")
tl_input_secure_file_gen.go#L383: return fmt.Errorf("unable to decode inputSecureFile#5367e5be: %w", err)
tl_input_secure_file_gen.go#L391: return fmt.Errorf("can't decode inputSecureFile#5367e5be to nil")
tl_input_secure_file_gen.go#L396: return fmt.Errorf("unable to decode inputSecureFile#5367e5be: field id: %w", err)
tl_input_secure_file_gen.go#L403: return fmt.Errorf("unable to decode inputSecureFile#5367e5be: field access_hash: %w", err)
tl_input_secure_file_gen.go#L479: return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", err)
tl_input_secure_file_gen.go#L486: return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", err)
tl_input_secure_file_gen.go#L490: return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", bin.NewUnexpectedID(id))
tl_input_secure_file_gen.go#L502: return fmt.Errorf("unable to decode InputSecureFileBox to nil")
tl_input_secure_file_gen.go#L506: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_secure_file_gen.go#L515: return fmt.Errorf("unable to encode InputSecureFileClass as nil")
tl_input_secure_value_gen.go#L259: return fmt.Errorf("can't encode inputSecureValue#db21d0a7 as nil")
tl_input_secure_value_gen.go#L268: return fmt.Errorf("can't encode inputSecureValue#db21d0a7 as nil")
tl_input_secure_value_gen.go#L292: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field flags: %w", err)
tl_input_secure_value_gen.go#L295: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field type is nil")
tl_input_secure_value_gen.go#L298: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field type: %w", err)
tl_input_secure_value_gen.go#L302: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field data: %w", err)
tl_input_secure_value_gen.go#L307: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field front_side is nil")
tl_input_secure_value_gen.go#L310: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field front_side: %w", err)
tl_input_secure_value_gen.go#L315: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field reverse_side is nil")
tl_input_secure_value_gen.go#L318: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field reverse_side: %w", err)
tl_input_secure_value_gen.go#L323: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field selfie is nil")
tl_input_secure_value_gen.go#L326: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field selfie: %w", err)
tl_input_secure_value_gen.go#L333: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field translation element with index %d is nil", idx)
tl_input_secure_value_gen.go#L336: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field translation element with index %d: %w", idx, err)
tl_input_secure_value_gen.go#L344: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field files element with index %d is nil", idx)
tl_input_secure_value_gen.go#L347: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field files element with index %d: %w", idx, err)
tl_input_secure_value_gen.go#L353: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field plain_data is nil")
tl_input_secure_value_gen.go#L356: return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field plain_data: %w", err)
tl_input_secure_value_gen.go#L491: return fmt.Errorf("can't decode inputSecureValue#db21d0a7 to nil")
tl_input_secure_value_gen.go#L494: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: %w", err)
tl_input_secure_value_gen.go#L502: return fmt.Errorf("can't decode inputSecureValue#db21d0a7 to nil")
tl_input_secure_value_gen.go#L506: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field flags: %w", err)
tl_input_secure_value_gen.go#L512: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field type: %w", err)
tl_input_secure_value_gen.go#L518: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field data: %w", err)
tl_input_secure_value_gen.go#L524: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field front_side: %w", err)
tl_input_secure_value_gen.go#L531: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field reverse_side: %w", err)
tl_input_secure_value_gen.go#L538: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field selfie: %w", err)
tl_input_secure_value_gen.go#L545: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field translation: %w", err)
tl_input_secure_value_gen.go#L550: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field translation: %w", err)
tl_input_secure_value_gen.go#L558: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field files: %w", err)
tl_input_secure_value_gen.go#L563: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field files: %w", err)
tl_input_secure_value_gen.go#L571: return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field plain_data: %w", err)
tl_input_single_media_gen.go#L159: return fmt.Errorf("can't encode inputSingleMedia#1cc6e91f as nil")
tl_input_single_media_gen.go#L168: return fmt.Errorf("can't encode inputSingleMedia#1cc6e91f as nil")
tl_input_single_media_gen.go#L174: return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field flags: %w", err)
tl_input_single_media_gen.go#L177: return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field media is nil")
tl_input_single_media_gen.go#L180: return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field media: %w", err)
tl_input_single_media_gen.go#L188: return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field entities element with index %d is nil", idx)
tl_input_single_media_gen.go#L191: return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field entities element with index %d: %w", idx, err)
tl_input_single_media_gen.go#L239: return fmt.Errorf("can't decode inputSingleMedia#1cc6e91f to nil")
tl_input_single_media_gen.go#L242: return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: %w", err)
tl_input_single_media_gen.go#L250: return fmt.Errorf("can't decode inputSingleMedia#1cc6e91f to nil")
tl_input_single_media_gen.go#L254: return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field flags: %w", err)
tl_input_single_media_gen.go#L260: return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field media: %w", err)
tl_input_single_media_gen.go#L267: return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field random_id: %w", err)
tl_input_single_media_gen.go#L274: return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field message: %w", err)
tl_input_single_media_gen.go#L281: return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field entities: %w", err)
tl_input_single_media_gen.go#L286: return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field entities: %w", err)
tl_input_sticker_set_gen.go#L88: return fmt.Errorf("can't encode inputStickerSetEmpty#ffb62b95 as nil")
tl_input_sticker_set_gen.go#L97: return fmt.Errorf("can't encode inputStickerSetEmpty#ffb62b95 as nil")
tl_input_sticker_set_gen.go#L105: return fmt.Errorf("can't decode inputStickerSetEmpty#ffb62b95 to nil")
tl_input_sticker_set_gen.go#L108: return fmt.Errorf("unable to decode inputStickerSetEmpty#ffb62b95: %w", err)
tl_input_sticker_set_gen.go#L116: return fmt.Errorf("can't decode inputStickerSetEmpty#ffb62b95 to nil")
tl_input_sticker_set_gen.go#L218: return fmt.Errorf("can't encode inputStickerSetID#9de7a269 as nil")
tl_input_sticker_set_gen.go#L227: return fmt.Errorf("can't encode inputStickerSetID#9de7a269 as nil")
tl_input_sticker_set_gen.go#L247: return fmt.Errorf("can't decode inputStickerSetID#9de7a269 to nil")
tl_input_sticker_set_gen.go#L250: return fmt.Errorf("unable to decode inputStickerSetID#9de7a269: %w", err)
tl_input_sticker_set_gen.go#L258: return fmt.Errorf("can't decode inputStickerSetID#9de7a269 to nil")
tl_input_sticker_set_gen.go#L263: return fmt.Errorf("unable to decode inputStickerSetID#9de7a269: field id: %w", err)
tl_input_sticker_set_gen.go#L270: return fmt.Errorf("unable to decode inputStickerSetID#9de7a269: field access_hash: %w", err)
tl_input_sticker_set_gen.go#L363: return fmt.Errorf("can't encode inputStickerSetShortName#861cc8a0 as nil")
tl_input_sticker_set_gen.go#L372: return fmt.Errorf("can't encode inputStickerSetShortName#861cc8a0 as nil")
tl_input_sticker_set_gen.go#L386: return fmt.Errorf("can't decode inputStickerSetShortName#861cc8a0 to nil")
tl_input_sticker_set_gen.go#L389: return fmt.Errorf("unable to decode inputStickerSetShortName#861cc8a0: %w", err)
tl_input_sticker_set_gen.go#L397: return fmt.Errorf("can't decode inputStickerSetShortName#861cc8a0 to nil")
tl_input_sticker_set_gen.go#L402: return fmt.Errorf("unable to decode inputStickerSetShortName#861cc8a0: field short_name: %w", err)
tl_input_sticker_set_gen.go#L478: return fmt.Errorf("can't encode inputStickerSetAnimatedEmoji#28703c8 as nil")
tl_input_sticker_set_gen.go#L487: return fmt.Errorf("can't encode inputStickerSetAnimatedEmoji#28703c8 as nil")
tl_input_sticker_set_gen.go#L495: return fmt.Errorf("can't decode inputStickerSetAnimatedEmoji#28703c8 to nil")
tl_input_sticker_set_gen.go#L498: return fmt.Errorf("unable to decode inputStickerSetAnimatedEmoji#28703c8: %w", err)
tl_input_sticker_set_gen.go#L506: return fmt.Errorf("can't decode inputStickerSetAnimatedEmoji#28703c8 to nil")
tl_input_sticker_set_gen.go#L600: return fmt.Errorf("can't encode inputStickerSetDice#e67f520e as nil")
tl_input_sticker_set_gen.go#L609: return fmt.Errorf("can't encode inputStickerSetDice#e67f520e as nil")
tl_input_sticker_set_gen.go#L623: return fmt.Errorf("can't decode inputStickerSetDice#e67f520e to nil")
tl_input_sticker_set_gen.go#L626: return fmt.Errorf("unable to decode inputStickerSetDice#e67f520e: %w", err)
tl_input_sticker_set_gen.go#L634: return fmt.Errorf("can't decode inputStickerSetDice#e67f520e to nil")
tl_input_sticker_set_gen.go#L639: return fmt.Errorf("unable to decode inputStickerSetDice#e67f520e: field emoticon: %w", err)
tl_input_sticker_set_gen.go#L706: return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
tl_input_sticker_set_gen.go#L713: return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
tl_input_sticker_set_gen.go#L720: return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
tl_input_sticker_set_gen.go#L727: return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
tl_input_sticker_set_gen.go#L734: return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
tl_input_sticker_set_gen.go#L738: return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", bin.NewUnexpectedID(id))
tl_input_sticker_set_gen.go#L750: return fmt.Errorf("unable to decode InputStickerSetBox to nil")
tl_input_sticker_set_gen.go#L754: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_sticker_set_gen.go#L763: return fmt.Errorf("unable to encode InputStickerSetClass as nil")
tl_input_sticker_set_item_gen.go#L141: return fmt.Errorf("can't encode inputStickerSetItem#ffa0a496 as nil")
tl_input_sticker_set_item_gen.go#L150: return fmt.Errorf("can't encode inputStickerSetItem#ffa0a496 as nil")
tl_input_sticker_set_item_gen.go#L156: return fmt.Errorf("unable to encode inputStickerSetItem#ffa0a496: field flags: %w", err)
tl_input_sticker_set_item_gen.go#L159: return fmt.Errorf("unable to encode inputStickerSetItem#ffa0a496: field document is nil")
tl_input_sticker_set_item_gen.go#L162: return fmt.Errorf("unable to encode inputStickerSetItem#ffa0a496: field document: %w", err)
tl_input_sticker_set_item_gen.go#L167: return fmt.Errorf("unable to encode inputStickerSetItem#ffa0a496: field mask_coords: %w", err)
tl_input_sticker_set_item_gen.go#L206: return fmt.Errorf("can't decode inputStickerSetItem#ffa0a496 to nil")
tl_input_sticker_set_item_gen.go#L209: return fmt.Errorf("unable to decode inputStickerSetItem#ffa0a496: %w", err)
tl_input_sticker_set_item_gen.go#L217: return fmt.Errorf("can't decode inputStickerSetItem#ffa0a496 to nil")
tl_input_sticker_set_item_gen.go#L221: return fmt.Errorf("unable to decode inputStickerSetItem#ffa0a496: field flags: %w", err)
tl_input_sticker_set_item_gen.go#L227: return fmt.Errorf("unable to decode inputStickerSetItem#ffa0a496: field document: %w", err)
tl_input_sticker_set_item_gen.go#L234: return fmt.Errorf("unable to decode inputStickerSetItem#ffa0a496: field emoji: %w", err)
tl_input_sticker_set_item_gen.go#L240: return fmt.Errorf("unable to decode inputStickerSetItem#ffa0a496: field mask_coords: %w", err)
tl_input_stickered_media_gen.go#L105: return fmt.Errorf("can't encode inputStickeredMediaPhoto#4a992157 as nil")
tl_input_stickered_media_gen.go#L114: return fmt.Errorf("can't encode inputStickeredMediaPhoto#4a992157 as nil")
tl_input_stickered_media_gen.go#L117: return fmt.Errorf("unable to encode inputStickeredMediaPhoto#4a992157: field id is nil")
tl_input_stickered_media_gen.go#L120: return fmt.Errorf("unable to encode inputStickeredMediaPhoto#4a992157: field id: %w", err)
tl_input_stickered_media_gen.go#L133: return fmt.Errorf("can't decode inputStickeredMediaPhoto#4a992157 to nil")
tl_input_stickered_media_gen.go#L136: return fmt.Errorf("unable to decode inputStickeredMediaPhoto#4a992157: %w", err)
tl_input_stickered_media_gen.go#L144: return fmt.Errorf("can't decode inputStickeredMediaPhoto#4a992157 to nil")
tl_input_stickered_media_gen.go#L149: return fmt.Errorf("unable to decode inputStickeredMediaPhoto#4a992157: field id: %w", err)
tl_input_stickered_media_gen.go#L242: return fmt.Errorf("can't encode inputStickeredMediaDocument#438865b as nil")
tl_input_stickered_media_gen.go#L251: return fmt.Errorf("can't encode inputStickeredMediaDocument#438865b as nil")
tl_input_stickered_media_gen.go#L254: return fmt.Errorf("unable to encode inputStickeredMediaDocument#438865b: field id is nil")
tl_input_stickered_media_gen.go#L257: return fmt.Errorf("unable to encode inputStickeredMediaDocument#438865b: field id: %w", err)
tl_input_stickered_media_gen.go#L270: return fmt.Errorf("can't decode inputStickeredMediaDocument#438865b to nil")
tl_input_stickered_media_gen.go#L273: return fmt.Errorf("unable to decode inputStickeredMediaDocument#438865b: %w", err)
tl_input_stickered_media_gen.go#L281: return fmt.Errorf("can't decode inputStickeredMediaDocument#438865b to nil")
tl_input_stickered_media_gen.go#L286: return fmt.Errorf("unable to decode inputStickeredMediaDocument#438865b: field id: %w", err)
tl_input_stickered_media_gen.go#L350: return nil, fmt.Errorf("unable to decode InputStickeredMediaClass: %w", err)
tl_input_stickered_media_gen.go#L357: return nil, fmt.Errorf("unable to decode InputStickeredMediaClass: %w", err)
tl_input_stickered_media_gen.go#L361: return nil, fmt.Errorf("unable to decode InputStickeredMediaClass: %w", bin.NewUnexpectedID(id))
tl_input_stickered_media_gen.go#L373: return fmt.Errorf("unable to decode InputStickeredMediaBox to nil")
tl_input_stickered_media_gen.go#L377: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_stickered_media_gen.go#L386: return fmt.Errorf("unable to encode InputStickeredMediaClass as nil")
tl_input_theme_gen.go#L116: return fmt.Errorf("can't encode inputTheme#3c5693e9 as nil")
tl_input_theme_gen.go#L125: return fmt.Errorf("can't encode inputTheme#3c5693e9 as nil")
tl_input_theme_gen.go#L145: return fmt.Errorf("can't decode inputTheme#3c5693e9 to nil")
tl_input_theme_gen.go#L148: return fmt.Errorf("unable to decode inputTheme#3c5693e9: %w", err)
tl_input_theme_gen.go#L156: return fmt.Errorf("can't decode inputTheme#3c5693e9 to nil")
tl_input_theme_gen.go#L161: return fmt.Errorf("unable to decode inputTheme#3c5693e9: field id: %w", err)
tl_input_theme_gen.go#L168: return fmt.Errorf("unable to decode inputTheme#3c5693e9: field access_hash: %w", err)
tl_input_theme_gen.go#L261: return fmt.Errorf("can't encode inputThemeSlug#f5890df1 as nil")
tl_input_theme_gen.go#L270: return fmt.Errorf("can't encode inputThemeSlug#f5890df1 as nil")
tl_input_theme_gen.go#L284: return fmt.Errorf("can't decode inputThemeSlug#f5890df1 to nil")
tl_input_theme_gen.go#L287: return fmt.Errorf("unable to decode inputThemeSlug#f5890df1: %w", err)
tl_input_theme_gen.go#L295: return fmt.Errorf("can't decode inputThemeSlug#f5890df1 to nil")
tl_input_theme_gen.go#L300: return fmt.Errorf("unable to decode inputThemeSlug#f5890df1: field slug: %w", err)
tl_input_theme_gen.go#L364: return nil, fmt.Errorf("unable to decode InputThemeClass: %w", err)
tl_input_theme_gen.go#L371: return nil, fmt.Errorf("unable to decode InputThemeClass: %w", err)
tl_input_theme_gen.go#L375: return nil, fmt.Errorf("unable to decode InputThemeClass: %w", bin.NewUnexpectedID(id))
tl_input_theme_gen.go#L387: return fmt.Errorf("unable to decode InputThemeBox to nil")
tl_input_theme_gen.go#L391: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_theme_gen.go#L400: return fmt.Errorf("unable to encode InputThemeClass as nil")
tl_input_theme_settings_gen.go#L192: return fmt.Errorf("can't encode inputThemeSettings#bd507cd1 as nil")
tl_input_theme_settings_gen.go#L201: return fmt.Errorf("can't encode inputThemeSettings#bd507cd1 as nil")
tl_input_theme_settings_gen.go#L216: return fmt.Errorf("unable to encode inputThemeSettings#bd507cd1: field flags: %w", err)
tl_input_theme_settings_gen.go#L219: return fmt.Errorf("unable to encode inputThemeSettings#bd507cd1: field base_theme is nil")
tl_input_theme_settings_gen.go#L222: return fmt.Errorf("unable to encode inputThemeSettings#bd507cd1: field base_theme: %w", err)
tl_input_theme_settings_gen.go#L233: return fmt.Errorf("unable to encode inputThemeSettings#bd507cd1: field wallpaper is nil")
tl_input_theme_settings_gen.go#L236: return fmt.Errorf("unable to encode inputThemeSettings#bd507cd1: field wallpaper: %w", err)
tl_input_theme_settings_gen.go#L241: return fmt.Errorf("unable to encode inputThemeSettings#bd507cd1: field wallpaper_settings: %w", err)
tl_input_theme_settings_gen.go#L320: return fmt.Errorf("can't decode inputThemeSettings#bd507cd1 to nil")
tl_input_theme_settings_gen.go#L323: return fmt.Errorf("unable to decode inputThemeSettings#bd507cd1: %w", err)
tl_input_theme_settings_gen.go#L331: return fmt.Errorf("can't decode inputThemeSettings#bd507cd1 to nil")
tl_input_theme_settings_gen.go#L335: return fmt.Errorf("unable to decode inputThemeSettings#bd507cd1: field flags: %w", err)
tl_input_theme_settings_gen.go#L341: return fmt.Errorf("unable to decode inputThemeSettings#bd507cd1: field base_theme: %w", err)
tl_input_theme_settings_gen.go#L348: return fmt.Errorf("unable to decode inputThemeSettings#bd507cd1: field accent_color: %w", err)
tl_input_theme_settings_gen.go#L355: return fmt.Errorf("unable to decode inputThemeSettings#bd507cd1: field message_top_color: %w", err)
tl_input_theme_settings_gen.go#L362: return fmt.Errorf("unable to decode inputThemeSettings#bd507cd1: field message_bottom_color: %w", err)
tl_input_theme_settings_gen.go#L369: return fmt.Errorf("unable to decode inputThemeSettings#bd507cd1: field wallpaper: %w", err)
tl_input_theme_settings_gen.go#L375: return fmt.Errorf("unable to decode inputThemeSettings#bd507cd1: field wallpaper_settings: %w", err)
tl_input_user_gen.go#L88: return fmt.Errorf("can't encode inputUserEmpty#b98886cf as nil")
tl_input_user_gen.go#L97: return fmt.Errorf("can't encode inputUserEmpty#b98886cf as nil")
tl_input_user_gen.go#L105: return fmt.Errorf("can't decode inputUserEmpty#b98886cf to nil")
tl_input_user_gen.go#L108: return fmt.Errorf("unable to decode inputUserEmpty#b98886cf: %w", err)
tl_input_user_gen.go#L116: return fmt.Errorf("can't decode inputUserEmpty#b98886cf to nil")
tl_input_user_gen.go#L190: return fmt.Errorf("can't encode inputUserSelf#f7c1b13f as nil")
tl_input_user_gen.go#L199: return fmt.Errorf("can't encode inputUserSelf#f7c1b13f as nil")
tl_input_user_gen.go#L207: return fmt.Errorf("can't decode inputUserSelf#f7c1b13f to nil")
tl_input_user_gen.go#L210: return fmt.Errorf("unable to decode inputUserSelf#f7c1b13f: %w", err)
tl_input_user_gen.go#L218: return fmt.Errorf("can't decode inputUserSelf#f7c1b13f to nil")
tl_input_user_gen.go#L323: return fmt.Errorf("can't encode inputUser#d8292816 as nil")
tl_input_user_gen.go#L332: return fmt.Errorf("can't encode inputUser#d8292816 as nil")
tl_input_user_gen.go#L352: return fmt.Errorf("can't decode inputUser#d8292816 to nil")
tl_input_user_gen.go#L355: return fmt.Errorf("unable to decode inputUser#d8292816: %w", err)
tl_input_user_gen.go#L363: return fmt.Errorf("can't decode inputUser#d8292816 to nil")
tl_input_user_gen.go#L368: return fmt.Errorf("unable to decode inputUser#d8292816: field user_id: %w", err)
tl_input_user_gen.go#L375: return fmt.Errorf("unable to decode inputUser#d8292816: field access_hash: %w", err)
tl_input_user_gen.go#L493: return fmt.Errorf("can't encode inputUserFromMessage#2d117597 as nil")
tl_input_user_gen.go#L502: return fmt.Errorf("can't encode inputUserFromMessage#2d117597 as nil")
tl_input_user_gen.go#L505: return fmt.Errorf("unable to encode inputUserFromMessage#2d117597: field peer is nil")
tl_input_user_gen.go#L508: return fmt.Errorf("unable to encode inputUserFromMessage#2d117597: field peer: %w", err)
tl_input_user_gen.go#L533: return fmt.Errorf("can't decode inputUserFromMessage#2d117597 to nil")
tl_input_user_gen.go#L536: return fmt.Errorf("unable to decode inputUserFromMessage#2d117597: %w", err)
tl_input_user_gen.go#L544: return fmt.Errorf("can't decode inputUserFromMessage#2d117597 to nil")
tl_input_user_gen.go#L549: return fmt.Errorf("unable to decode inputUserFromMessage#2d117597: field peer: %w", err)
tl_input_user_gen.go#L556: return fmt.Errorf("unable to decode inputUserFromMessage#2d117597: field msg_id: %w", err)
tl_input_user_gen.go#L563: return fmt.Errorf("unable to decode inputUserFromMessage#2d117597: field user_id: %w", err)
tl_input_user_gen.go#L629: return nil, fmt.Errorf("unable to decode InputUserClass: %w", err)
tl_input_user_gen.go#L636: return nil, fmt.Errorf("unable to decode InputUserClass: %w", err)
tl_input_user_gen.go#L643: return nil, fmt.Errorf("unable to decode InputUserClass: %w", err)
tl_input_user_gen.go#L650: return nil, fmt.Errorf("unable to decode InputUserClass: %w", err)
tl_input_user_gen.go#L654: return nil, fmt.Errorf("unable to decode InputUserClass: %w", bin.NewUnexpectedID(id))
tl_input_user_gen.go#L666: return fmt.Errorf("unable to decode InputUserBox to nil")
tl_input_user_gen.go#L670: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_user_gen.go#L679: return fmt.Errorf("unable to encode InputUserClass as nil")
tl_input_wall_paper_gen.go#L116: return fmt.Errorf("can't encode inputWallPaper#e630b979 as nil")
tl_input_wall_paper_gen.go#L125: return fmt.Errorf("can't encode inputWallPaper#e630b979 as nil")
tl_input_wall_paper_gen.go#L145: return fmt.Errorf("can't decode inputWallPaper#e630b979 to nil")
tl_input_wall_paper_gen.go#L148: return fmt.Errorf("unable to decode inputWallPaper#e630b979: %w", err)
tl_input_wall_paper_gen.go#L156: return fmt.Errorf("can't decode inputWallPaper#e630b979 to nil")
tl_input_wall_paper_gen.go#L161: return fmt.Errorf("unable to decode inputWallPaper#e630b979: field id: %w", err)
tl_input_wall_paper_gen.go#L168: return fmt.Errorf("unable to decode inputWallPaper#e630b979: field access_hash: %w", err)
tl_input_wall_paper_gen.go#L261: return fmt.Errorf("can't encode inputWallPaperSlug#72091c80 as nil")
tl_input_wall_paper_gen.go#L270: return fmt.Errorf("can't encode inputWallPaperSlug#72091c80 as nil")
tl_input_wall_paper_gen.go#L284: return fmt.Errorf("can't decode inputWallPaperSlug#72091c80 to nil")
tl_input_wall_paper_gen.go#L287: return fmt.Errorf("unable to decode inputWallPaperSlug#72091c80: %w", err)
tl_input_wall_paper_gen.go#L295: return fmt.Errorf("can't decode inputWallPaperSlug#72091c80 to nil")
tl_input_wall_paper_gen.go#L300: return fmt.Errorf("unable to decode inputWallPaperSlug#72091c80: field slug: %w", err)
tl_input_wall_paper_gen.go#L376: return fmt.Errorf("can't encode inputWallPaperNoFile#8427bbac as nil")
tl_input_wall_paper_gen.go#L385: return fmt.Errorf("can't encode inputWallPaperNoFile#8427bbac as nil")
tl_input_wall_paper_gen.go#L393: return fmt.Errorf("can't decode inputWallPaperNoFile#8427bbac to nil")
tl_input_wall_paper_gen.go#L396: return fmt.Errorf("unable to decode inputWallPaperNoFile#8427bbac: %w", err)
tl_input_wall_paper_gen.go#L404: return fmt.Errorf("can't decode inputWallPaperNoFile#8427bbac to nil")
tl_input_wall_paper_gen.go#L467: return nil, fmt.Errorf("unable to decode InputWallPaperClass: %w", err)
tl_input_wall_paper_gen.go#L474: return nil, fmt.Errorf("unable to decode InputWallPaperClass: %w", err)
tl_input_wall_paper_gen.go#L481: return nil, fmt.Errorf("unable to decode InputWallPaperClass: %w", err)
tl_input_wall_paper_gen.go#L485: return nil, fmt.Errorf("unable to decode InputWallPaperClass: %w", bin.NewUnexpectedID(id))
tl_input_wall_paper_gen.go#L497: return fmt.Errorf("unable to decode InputWallPaperBox to nil")
tl_input_wall_paper_gen.go#L501: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_wall_paper_gen.go#L510: return fmt.Errorf("unable to encode InputWallPaperClass as nil")
tl_input_web_document_gen.go#L141: return fmt.Errorf("can't encode inputWebDocument#9bed434d as nil")
tl_input_web_document_gen.go#L150: return fmt.Errorf("can't encode inputWebDocument#9bed434d as nil")
tl_input_web_document_gen.go#L158: return fmt.Errorf("unable to encode inputWebDocument#9bed434d: field attributes element with index %d is nil", idx)
tl_input_web_document_gen.go#L161: return fmt.Errorf("unable to encode inputWebDocument#9bed434d: field attributes element with index %d: %w", idx, err)
tl_input_web_document_gen.go#L195: return fmt.Errorf("can't decode inputWebDocument#9bed434d to nil")
tl_input_web_document_gen.go#L198: return fmt.Errorf("unable to decode inputWebDocument#9bed434d: %w", err)
tl_input_web_document_gen.go#L206: return fmt.Errorf("can't decode inputWebDocument#9bed434d to nil")
tl_input_web_document_gen.go#L211: return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field url: %w", err)
tl_input_web_document_gen.go#L218: return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field size: %w", err)
tl_input_web_document_gen.go#L225: return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field mime_type: %w", err)
tl_input_web_document_gen.go#L232: return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field attributes: %w", err)
tl_input_web_document_gen.go#L237: return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field attributes: %w", err)
tl_input_web_file_location_gen.go#L116: return fmt.Errorf("can't encode inputWebFileLocation#c239d686 as nil")
tl_input_web_file_location_gen.go#L125: return fmt.Errorf("can't encode inputWebFileLocation#c239d686 as nil")
tl_input_web_file_location_gen.go#L145: return fmt.Errorf("can't decode inputWebFileLocation#c239d686 to nil")
tl_input_web_file_location_gen.go#L148: return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: %w", err)
tl_input_web_file_location_gen.go#L156: return fmt.Errorf("can't decode inputWebFileLocation#c239d686 to nil")
tl_input_web_file_location_gen.go#L161: return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: field url: %w", err)
tl_input_web_file_location_gen.go#L168: return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: field access_hash: %w", err)
tl_input_web_file_location_gen.go#L316: return fmt.Errorf("can't encode inputWebFileGeoPointLocation#9f2221c9 as nil")
tl_input_web_file_location_gen.go#L325: return fmt.Errorf("can't encode inputWebFileGeoPointLocation#9f2221c9 as nil")
tl_input_web_file_location_gen.go#L328: return fmt.Errorf("unable to encode inputWebFileGeoPointLocation#9f2221c9: field geo_point is nil")
tl_input_web_file_location_gen.go#L331: return fmt.Errorf("unable to encode inputWebFileGeoPointLocation#9f2221c9: field geo_point: %w", err)
tl_input_web_file_location_gen.go#L374: return fmt.Errorf("can't decode inputWebFileGeoPointLocation#9f2221c9 to nil")
tl_input_web_file_location_gen.go#L377: return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: %w", err)
tl_input_web_file_location_gen.go#L385: return fmt.Errorf("can't decode inputWebFileGeoPointLocation#9f2221c9 to nil")
tl_input_web_file_location_gen.go#L390: return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field geo_point: %w", err)
tl_input_web_file_location_gen.go#L397: return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field access_hash: %w", err)
tl_input_web_file_location_gen.go#L404: return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field w: %w", err)
tl_input_web_file_location_gen.go#L411: return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field h: %w", err)
tl_input_web_file_location_gen.go#L418: return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field zoom: %w", err)
tl_input_web_file_location_gen.go#L425: return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field scale: %w", err)
tl_input_web_file_location_gen.go#L492: return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", err)
tl_input_web_file_location_gen.go#L499: return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", err)
tl_input_web_file_location_gen.go#L503: return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", bin.NewUnexpectedID(id))
tl_input_web_file_location_gen.go#L515: return fmt.Errorf("unable to decode InputWebFileLocationBox to nil")
tl_input_web_file_location_gen.go#L519: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_input_web_file_location_gen.go#L528: return fmt.Errorf("unable to encode InputWebFileLocationClass as nil")
tl_int_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_int_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_int_vector_gen.go#L128: return fmt.Errorf("can't decode Vector to nil")
tl_int_vector_gen.go#L137: return fmt.Errorf("can't decode Vector to nil")
tl_int_vector_gen.go#L142: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_int_vector_gen.go#L147: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_invoice_gen.go#L258: return fmt.Errorf("can't encode invoice#cd886e0 as nil")
tl_invoice_gen.go#L267: return fmt.Errorf("can't encode invoice#cd886e0 as nil")
tl_invoice_gen.go#L300: return fmt.Errorf("unable to encode invoice#cd886e0: field flags: %w", err)
tl_invoice_gen.go#L306: return fmt.Errorf("unable to encode invoice#cd886e0: field prices element with index %d: %w", idx, err)
tl_invoice_gen.go#L492: return fmt.Errorf("can't decode invoice#cd886e0 to nil")
tl_invoice_gen.go#L495: return fmt.Errorf("unable to decode invoice#cd886e0: %w", err)
tl_invoice_gen.go#L503: return fmt.Errorf("can't decode invoice#cd886e0 to nil")
tl_invoice_gen.go#L507: return fmt.Errorf("unable to decode invoice#cd886e0: field flags: %w", err)
tl_invoice_gen.go#L521: return fmt.Errorf("unable to decode invoice#cd886e0: field currency: %w", err)
tl_invoice_gen.go#L528: return fmt.Errorf("unable to decode invoice#cd886e0: field prices: %w", err)
tl_invoice_gen.go#L533: return fmt.Errorf("unable to decode invoice#cd886e0: field prices: %w", err)
tl_invoice_gen.go#L541: return fmt.Errorf("unable to decode invoice#cd886e0: field max_tip_amount: %w", err)
tl_invoice_gen.go#L548: return fmt.Errorf("unable to decode invoice#cd886e0: field suggested_tip_amounts: %w", err)
tl_invoice_gen.go#L553: return fmt.Errorf("unable to decode invoice#cd886e0: field suggested_tip_amounts: %w", err)
tl_invoke_after_msg_gen.go#L116: return fmt.Errorf("can't encode invokeAfterMsg#cb9f372d as nil")
tl_invoke_after_msg_gen.go#L125: return fmt.Errorf("can't encode invokeAfterMsg#cb9f372d as nil")
tl_invoke_after_msg_gen.go#L129: return fmt.Errorf("unable to encode invokeAfterMsg#cb9f372d: field query: %w", err)
tl_invoke_after_msg_gen.go#L147: return fmt.Errorf("can't decode invokeAfterMsg#cb9f372d to nil")
tl_invoke_after_msg_gen.go#L150: return fmt.Errorf("unable to decode invokeAfterMsg#cb9f372d: %w", err)
tl_invoke_after_msg_gen.go#L158: return fmt.Errorf("can't decode invokeAfterMsg#cb9f372d to nil")
tl_invoke_after_msg_gen.go#L163: return fmt.Errorf("unable to decode invokeAfterMsg#cb9f372d: field msg_id: %w", err)
tl_invoke_after_msg_gen.go#L169: return fmt.Errorf("unable to decode invokeAfterMsg#cb9f372d: field query: %w", err)
tl_invoke_after_msgs_gen.go#L116: return fmt.Errorf("can't encode invokeAfterMsgs#3dc4b4f0 as nil")
tl_invoke_after_msgs_gen.go#L125: return fmt.Errorf("can't encode invokeAfterMsgs#3dc4b4f0 as nil")
tl_invoke_after_msgs_gen.go#L132: return fmt.Errorf("unable to encode invokeAfterMsgs#3dc4b4f0: field query: %w", err)
tl_invoke_after_msgs_gen.go#L150: return fmt.Errorf("can't decode invokeAfterMsgs#3dc4b4f0 to nil")
tl_invoke_after_msgs_gen.go#L153: return fmt.Errorf("unable to decode invokeAfterMsgs#3dc4b4f0: %w", err)
tl_invoke_after_msgs_gen.go#L161: return fmt.Errorf("can't decode invokeAfterMsgs#3dc4b4f0 to nil")
tl_invoke_after_msgs_gen.go#L166: return fmt.Errorf("unable to decode invokeAfterMsgs#3dc4b4f0: field msg_ids: %w", err)
tl_invoke_after_msgs_gen.go#L171: return fmt.Errorf("unable to decode invokeAfterMsgs#3dc4b4f0: field msg_ids: %w", err)
tl_invoke_after_msgs_gen.go#L178: return fmt.Errorf("unable to decode invokeAfterMsgs#3dc4b4f0: field query: %w", err)
tl_invoke_with_layer_gen.go#L119: return fmt.Errorf("can't encode invokeWithLayer#da9b0d0d as nil")
tl_invoke_with_layer_gen.go#L128: return fmt.Errorf("can't encode invokeWithLayer#da9b0d0d as nil")
tl_invoke_with_layer_gen.go#L132: return fmt.Errorf("unable to encode invokeWithLayer#da9b0d0d: field query: %w", err)
tl_invoke_with_layer_gen.go#L150: return fmt.Errorf("can't decode invokeWithLayer#da9b0d0d to nil")
tl_invoke_with_layer_gen.go#L153: return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: %w", err)
tl_invoke_with_layer_gen.go#L161: return fmt.Errorf("can't decode invokeWithLayer#da9b0d0d to nil")
tl_invoke_with_layer_gen.go#L166: return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: field layer: %w", err)
tl_invoke_with_layer_gen.go#L172: return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: field query: %w", err)
tl_invoke_with_messages_range_gen.go#L116: return fmt.Errorf("can't encode invokeWithMessagesRange#365275f2 as nil")
tl_invoke_with_messages_range_gen.go#L125: return fmt.Errorf("can't encode invokeWithMessagesRange#365275f2 as nil")
tl_invoke_with_messages_range_gen.go#L128: return fmt.Errorf("unable to encode invokeWithMessagesRange#365275f2: field range: %w", err)
tl_invoke_with_messages_range_gen.go#L131: return fmt.Errorf("unable to encode invokeWithMessagesRange#365275f2: field query: %w", err)
tl_invoke_with_messages_range_gen.go#L149: return fmt.Errorf("can't decode invokeWithMessagesRange#365275f2 to nil")
tl_invoke_with_messages_range_gen.go#L152: return fmt.Errorf("unable to decode invokeWithMessagesRange#365275f2: %w", err)
tl_invoke_with_messages_range_gen.go#L160: return fmt.Errorf("can't decode invokeWithMessagesRange#365275f2 to nil")
tl_invoke_with_messages_range_gen.go#L164: return fmt.Errorf("unable to decode invokeWithMessagesRange#365275f2: field range: %w", err)
tl_invoke_with_messages_range_gen.go#L169: return fmt.Errorf("unable to decode invokeWithMessagesRange#365275f2: field query: %w", err)
tl_invoke_with_takeout_gen.go#L116: return fmt.Errorf("can't encode invokeWithTakeout#aca9fd2e as nil")
tl_invoke_with_takeout_gen.go#L125: return fmt.Errorf("can't encode invokeWithTakeout#aca9fd2e as nil")
tl_invoke_with_takeout_gen.go#L129: return fmt.Errorf("unable to encode invokeWithTakeout#aca9fd2e: field query: %w", err)
tl_invoke_with_takeout_gen.go#L147: return fmt.Errorf("can't decode invokeWithTakeout#aca9fd2e to nil")
tl_invoke_with_takeout_gen.go#L150: return fmt.Errorf("unable to decode invokeWithTakeout#aca9fd2e: %w", err)
tl_invoke_with_takeout_gen.go#L158: return fmt.Errorf("can't decode invokeWithTakeout#aca9fd2e to nil")
tl_invoke_with_takeout_gen.go#L163: return fmt.Errorf("unable to decode invokeWithTakeout#aca9fd2e: field takeout_id: %w", err)
tl_invoke_with_takeout_gen.go#L169: return fmt.Errorf("unable to decode invokeWithTakeout#aca9fd2e: field query: %w", err)
tl_invoke_without_updates_gen.go#L110: return fmt.Errorf("can't encode invokeWithoutUpdates#bf9459b7 as nil")
tl_invoke_without_updates_gen.go#L119: return fmt.Errorf("can't encode invokeWithoutUpdates#bf9459b7 as nil")
tl_invoke_without_updates_gen.go#L122: return fmt.Errorf("unable to encode invokeWithoutUpdates#bf9459b7: field query: %w", err)
tl_invoke_without_updates_gen.go#L135: return fmt.Errorf("can't decode invokeWithoutUpdates#bf9459b7 to nil")
tl_invoke_without_updates_gen.go#L138: return fmt.Errorf("unable to decode invokeWithoutUpdates#bf9459b7: %w", err)
tl_invoke_without_updates_gen.go#L146: return fmt.Errorf("can't decode invokeWithoutUpdates#bf9459b7 to nil")
tl_invoke_without_updates_gen.go#L150: return fmt.Errorf("unable to decode invokeWithoutUpdates#bf9459b7: field query: %w", err)
tl_ip_port_gen.go#L115: return fmt.Errorf("can't encode ipPort#d433ad73 as nil")
tl_ip_port_gen.go#L124: return fmt.Errorf("can't encode ipPort#d433ad73 as nil")
tl_ip_port_gen.go#L144: return fmt.Errorf("can't decode ipPort#d433ad73 to nil")
tl_ip_port_gen.go#L147: return fmt.Errorf("unable to decode ipPort#d433ad73: %w", err)
tl_ip_port_gen.go#L155: return fmt.Errorf("can't decode ipPort#d433ad73 to nil")
tl_ip_port_gen.go#L160: return fmt.Errorf("unable to decode ipPort#d433ad73: field ipv4: %w", err)
tl_ip_port_gen.go#L167: return fmt.Errorf("unable to decode ipPort#d433ad73: field port: %w", err)
tl_ip_port_gen.go#L281: return fmt.Errorf("can't encode ipPortSecret#37982646 as nil")
tl_ip_port_gen.go#L290: return fmt.Errorf("can't encode ipPortSecret#37982646 as nil")
tl_ip_port_gen.go#L316: return fmt.Errorf("can't decode ipPortSecret#37982646 to nil")
tl_ip_port_gen.go#L319: return fmt.Errorf("unable to decode ipPortSecret#37982646: %w", err)
tl_ip_port_gen.go#L327: return fmt.Errorf("can't decode ipPortSecret#37982646 to nil")
tl_ip_port_gen.go#L332: return fmt.Errorf("unable to decode ipPortSecret#37982646: field ipv4: %w", err)
tl_ip_port_gen.go#L339: return fmt.Errorf("unable to decode ipPortSecret#37982646: field port: %w", err)
tl_ip_port_gen.go#L346: return fmt.Errorf("unable to decode ipPortSecret#37982646: field secret: %w", err)
tl_ip_port_gen.go#L416: return nil, fmt.Errorf("unable to decode IPPortClass: %w", err)
tl_ip_port_gen.go#L423: return nil, fmt.Errorf("unable to decode IPPortClass: %w", err)
tl_ip_port_gen.go#L427: return nil, fmt.Errorf("unable to decode IPPortClass: %w", bin.NewUnexpectedID(id))
tl_ip_port_gen.go#L439: return fmt.Errorf("unable to decode IPPortBox to nil")
tl_ip_port_gen.go#L443: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_ip_port_gen.go#L452: return fmt.Errorf("unable to encode IPPortClass as nil")
tl_json_object_value_gen.go#L116: return fmt.Errorf("can't encode jsonObjectValue#c0de1bd9 as nil")
tl_json_object_value_gen.go#L125: return fmt.Errorf("can't encode jsonObjectValue#c0de1bd9 as nil")
tl_json_object_value_gen.go#L129: return fmt.Errorf("unable to encode jsonObjectValue#c0de1bd9: field value is nil")
tl_json_object_value_gen.go#L132: return fmt.Errorf("unable to encode jsonObjectValue#c0de1bd9: field value: %w", err)
tl_json_object_value_gen.go#L150: return fmt.Errorf("can't decode jsonObjectValue#c0de1bd9 to nil")
tl_json_object_value_gen.go#L153: return fmt.Errorf("unable to decode jsonObjectValue#c0de1bd9: %w", err)
tl_json_object_value_gen.go#L161: return fmt.Errorf("can't decode jsonObjectValue#c0de1bd9 to nil")
tl_json_object_value_gen.go#L166: return fmt.Errorf("unable to decode jsonObjectValue#c0de1bd9: field key: %w", err)
tl_json_object_value_gen.go#L173: return fmt.Errorf("unable to decode jsonObjectValue#c0de1bd9: field value: %w", err)
tl_json_value_gen.go#L88: return fmt.Errorf("can't encode jsonNull#3f6d7b68 as nil")
tl_json_value_gen.go#L97: return fmt.Errorf("can't encode jsonNull#3f6d7b68 as nil")
tl_json_value_gen.go#L105: return fmt.Errorf("can't decode jsonNull#3f6d7b68 to nil")
tl_json_value_gen.go#L108: return fmt.Errorf("unable to decode jsonNull#3f6d7b68: %w", err)
tl_json_value_gen.go#L116: return fmt.Errorf("can't decode jsonNull#3f6d7b68 to nil")
tl_json_value_gen.go#L207: return fmt.Errorf("can't encode jsonBool#c7345e6a as nil")
tl_json_value_gen.go#L216: return fmt.Errorf("can't encode jsonBool#c7345e6a as nil")
tl_json_value_gen.go#L230: return fmt.Errorf("can't decode jsonBool#c7345e6a to nil")
tl_json_value_gen.go#L233: return fmt.Errorf("unable to decode jsonBool#c7345e6a: %w", err)
tl_json_value_gen.go#L241: return fmt.Errorf("can't decode jsonBool#c7345e6a to nil")
tl_json_value_gen.go#L246: return fmt.Errorf("unable to decode jsonBool#c7345e6a: field value: %w", err)
tl_json_value_gen.go#L339: return fmt.Errorf("can't encode jsonNumber#2be0dfa4 as nil")
tl_json_value_gen.go#L348: return fmt.Errorf("can't encode jsonNumber#2be0dfa4 as nil")
tl_json_value_gen.go#L362: return fmt.Errorf("can't decode jsonNumber#2be0dfa4 to nil")
tl_json_value_gen.go#L365: return fmt.Errorf("unable to decode jsonNumber#2be0dfa4: %w", err)
tl_json_value_gen.go#L373: return fmt.Errorf("can't decode jsonNumber#2be0dfa4 to nil")
tl_json_value_gen.go#L378: return fmt.Errorf("unable to decode jsonNumber#2be0dfa4: field value: %w", err)
tl_json_value_gen.go#L471: return fmt.Errorf("can't encode jsonString#b71e767a as nil")
tl_json_value_gen.go#L480: return fmt.Errorf("can't encode jsonString#b71e767a as nil")
tl_json_value_gen.go#L494: return fmt.Errorf("can't decode jsonString#b71e767a to nil")
tl_json_value_gen.go#L497: return fmt.Errorf("unable to decode jsonString#b71e767a: %w", err)
tl_json_value_gen.go#L505: return fmt.Errorf("can't decode jsonString#b71e767a to nil")
tl_json_value_gen.go#L510: return fmt.Errorf("unable to decode jsonString#b71e767a: field value: %w", err)
tl_json_value_gen.go#L603: return fmt.Errorf("can't encode jsonArray#f7444763 as nil")
tl_json_value_gen.go#L612: return fmt.Errorf("can't encode jsonArray#f7444763 as nil")
tl_json_value_gen.go#L617: return fmt.Errorf("unable to encode jsonArray#f7444763: field value element with index %d is nil", idx)
tl_json_value_gen.go#L620: return fmt.Errorf("unable to encode jsonArray#f7444763: field value element with index %d: %w", idx, err)
tl_json_value_gen.go#L639: return fmt.Errorf("can't decode jsonArray#f7444763 to nil")
tl_json_value_gen.go#L642: return fmt.Errorf("unable to decode jsonArray#f7444763: %w", err)
tl_json_value_gen.go#L650: return fmt.Errorf("can't decode jsonArray#f7444763 to nil")
tl_json_value_gen.go#L655: return fmt.Errorf("unable to decode jsonArray#f7444763: field value: %w", err)
tl_json_value_gen.go#L660: return fmt.Errorf("unable to decode jsonArray#f7444763: field value: %w", err)
tl_json_value_gen.go#L754: return fmt.Errorf("can't encode jsonObject#99c1d49d as nil")
tl_json_value_gen.go#L763: return fmt.Errorf("can't encode jsonObject#99c1d49d as nil")
tl_json_value_gen.go#L768: return fmt.Errorf("unable to encode jsonObject#99c1d49d: field value element with index %d: %w", idx, err)
tl_json_value_gen.go#L782: return fmt.Errorf("can't decode jsonObject#99c1d49d to nil")
tl_json_value_gen.go#L785: return fmt.Errorf("unable to decode jsonObject#99c1d49d: %w", err)
tl_json_value_gen.go#L793: return fmt.Errorf("can't decode jsonObject#99c1d49d to nil")
tl_json_value_gen.go#L798: return fmt.Errorf("unable to decode jsonObject#99c1d49d: field value: %w", err)
tl_json_value_gen.go#L803: return fmt.Errorf("unable to decode jsonObject#99c1d49d: field value: %w", err)
tl_json_value_gen.go#L872: return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
tl_json_value_gen.go#L879: return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
tl_json_value_gen.go#L886: return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
tl_json_value_gen.go#L893: return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
tl_json_value_gen.go#L900: return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
tl_json_value_gen.go#L907: return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
tl_json_value_gen.go#L911: return nil, fmt.Errorf("unable to decode JSONValueClass: %w", bin.NewUnexpectedID(id))
tl_json_value_gen.go#L923: return fmt.Errorf("unable to decode JSONValueBox to nil")
tl_json_value_gen.go#L927: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_json_value_gen.go#L936: return fmt.Errorf("unable to encode JSONValueClass as nil")
tl_keyboard_button_gen.go#L105: return fmt.Errorf("can't encode keyboardButton#a2fa4880 as nil")
tl_keyboard_button_gen.go#L114: return fmt.Errorf("can't encode keyboardButton#a2fa4880 as nil")
tl_keyboard_button_gen.go#L128: return fmt.Errorf("can't decode keyboardButton#a2fa4880 to nil")
tl_keyboard_button_gen.go#L131: return fmt.Errorf("unable to decode keyboardButton#a2fa4880: %w", err)
tl_keyboard_button_gen.go#L139: return fmt.Errorf("can't decode keyboardButton#a2fa4880 to nil")
tl_keyboard_button_gen.go#L144: return fmt.Errorf("unable to decode keyboardButton#a2fa4880: field text: %w", err)
tl_keyboard_button_gen.go#L248: return fmt.Errorf("can't encode keyboardButtonUrl#258aff05 as nil")
tl_keyboard_button_gen.go#L257: return fmt.Errorf("can't encode keyboardButtonUrl#258aff05 as nil")
tl_keyboard_button_gen.go#L277: return fmt.Errorf("can't decode keyboardButtonUrl#258aff05 to nil")
tl_keyboard_button_gen.go#L280: return fmt.Errorf("unable to decode keyboardButtonUrl#258aff05: %w", err)
tl_keyboard_button_gen.go#L288: return fmt.Errorf("can't decode keyboardButtonUrl#258aff05 to nil")
tl_keyboard_button_gen.go#L293: return fmt.Errorf("unable to decode keyboardButtonUrl#258aff05: field text: %w", err)
tl_keyboard_button_gen.go#L300: return fmt.Errorf("unable to decode keyboardButtonUrl#258aff05: field url: %w", err)
tl_keyboard_button_gen.go#L434: return fmt.Errorf("can't encode keyboardButtonCallback#35bbdb6b as nil")
tl_keyboard_button_gen.go#L443: return fmt.Errorf("can't encode keyboardButtonCallback#35bbdb6b as nil")
tl_keyboard_button_gen.go#L449: return fmt.Errorf("unable to encode keyboardButtonCallback#35bbdb6b: field flags: %w", err)
tl_keyboard_button_gen.go#L485: return fmt.Errorf("can't decode keyboardButtonCallback#35bbdb6b to nil")
tl_keyboard_button_gen.go#L488: return fmt.Errorf("unable to decode keyboardButtonCallback#35bbdb6b: %w", err)
tl_keyboard_button_gen.go#L496: return fmt.Errorf("can't decode keyboardButtonCallback#35bbdb6b to nil")
tl_keyboard_button_gen.go#L500: return fmt.Errorf("unable to decode keyboardButtonCallback#35bbdb6b: field flags: %w", err)
tl_keyboard_button_gen.go#L507: return fmt.Errorf("unable to decode keyboardButtonCallback#35bbdb6b: field text: %w", err)
tl_keyboard_button_gen.go#L514: return fmt.Errorf("unable to decode keyboardButtonCallback#35bbdb6b: field data: %w", err)
tl_keyboard_button_gen.go#L607: return fmt.Errorf("can't encode keyboardButtonRequestPhone#b16a6c29 as nil")
tl_keyboard_button_gen.go#L616: return fmt.Errorf("can't encode keyboardButtonRequestPhone#b16a6c29 as nil")
tl_keyboard_button_gen.go#L630: return fmt.Errorf("can't decode keyboardButtonRequestPhone#b16a6c29 to nil")
tl_keyboard_button_gen.go#L633: return fmt.Errorf("unable to decode keyboardButtonRequestPhone#b16a6c29: %w", err)
tl_keyboard_button_gen.go#L641: return fmt.Errorf("can't decode keyboardButtonRequestPhone#b16a6c29 to nil")
tl_keyboard_button_gen.go#L646: return fmt.Errorf("unable to decode keyboardButtonRequestPhone#b16a6c29: field text: %w", err)
tl_keyboard_button_gen.go#L739: return fmt.Errorf("can't encode keyboardButtonRequestGeoLocation#fc796b3f as nil")
tl_keyboard_button_gen.go#L748: return fmt.Errorf("can't encode keyboardButtonRequestGeoLocation#fc796b3f as nil")
tl_keyboard_button_gen.go#L762: return fmt.Errorf("can't decode keyboardButtonRequestGeoLocation#fc796b3f to nil")
tl_keyboard_button_gen.go#L765: return fmt.Errorf("unable to decode keyboardButtonRequestGeoLocation#fc796b3f: %w", err)
tl_keyboard_button_gen.go#L773: return fmt.Errorf("can't decode keyboardButtonRequestGeoLocation#fc796b3f to nil")
tl_keyboard_button_gen.go#L778: return fmt.Errorf("unable to decode keyboardButtonRequestGeoLocation#fc796b3f: field text: %w", err)
tl_keyboard_button_gen.go#L905: return fmt.Errorf("can't encode keyboardButtonSwitchInline#568a748 as nil")
tl_keyboard_button_gen.go#L914: return fmt.Errorf("can't encode keyboardButtonSwitchInline#568a748 as nil")
tl_keyboard_button_gen.go#L920: return fmt.Errorf("unable to encode keyboardButtonSwitchInline#568a748: field flags: %w", err)
tl_keyboard_button_gen.go#L956: return fmt.Errorf("can't decode keyboardButtonSwitchInline#568a748 to nil")
tl_keyboard_button_gen.go#L959: return fmt.Errorf("unable to decode keyboardButtonSwitchInline#568a748: %w", err)
tl_keyboard_button_gen.go#L967: return fmt.Errorf("can't decode keyboardButtonSwitchInline#568a748 to nil")
tl_keyboard_button_gen.go#L971: return fmt.Errorf("unable to decode keyboardButtonSwitchInline#568a748: field flags: %w", err)
tl_keyboard_button_gen.go#L978: return fmt.Errorf("unable to decode keyboardButtonSwitchInline#568a748: field text: %w", err)
tl_keyboard_button_gen.go#L985: return fmt.Errorf("unable to decode keyboardButtonSwitchInline#568a748: field query: %w", err)
tl_keyboard_button_gen.go#L1078: return fmt.Errorf("can't encode keyboardButtonGame#50f41ccf as nil")
tl_keyboard_button_gen.go#L1087: return fmt.Errorf("can't encode keyboardButtonGame#50f41ccf as nil")
tl_keyboard_button_gen.go#L1101: return fmt.Errorf("can't decode keyboardButtonGame#50f41ccf to nil")
tl_keyboard_button_gen.go#L1104: return fmt.Errorf("unable to decode keyboardButtonGame#50f41ccf: %w", err)
tl_keyboard_button_gen.go#L1112: return fmt.Errorf("can't decode keyboardButtonGame#50f41ccf to nil")
tl_keyboard_button_gen.go#L1117: return fmt.Errorf("unable to decode keyboardButtonGame#50f41ccf: field text: %w", err)
tl_keyboard_button_gen.go#L1210: return fmt.Errorf("can't encode keyboardButtonBuy#afd93fbb as nil")
tl_keyboard_button_gen.go#L1219: return fmt.Errorf("can't encode keyboardButtonBuy#afd93fbb as nil")
tl_keyboard_button_gen.go#L1233: return fmt.Errorf("can't decode keyboardButtonBuy#afd93fbb to nil")
tl_keyboard_button_gen.go#L1236: return fmt.Errorf("unable to decode keyboardButtonBuy#afd93fbb: %w", err)
tl_keyboard_button_gen.go#L1244: return fmt.Errorf("can't decode keyboardButtonBuy#afd93fbb to nil")
tl_keyboard_button_gen.go#L1249: return fmt.Errorf("unable to decode keyboardButtonBuy#afd93fbb: field text: %w", err)
tl_keyboard_button_gen.go#L1419: return fmt.Errorf("can't encode keyboardButtonUrlAuth#10b78d29 as nil")
tl_keyboard_button_gen.go#L1428: return fmt.Errorf("can't encode keyboardButtonUrlAuth#10b78d29 as nil")
tl_keyboard_button_gen.go#L1434: return fmt.Errorf("unable to encode keyboardButtonUrlAuth#10b78d29: field flags: %w", err)
tl_keyboard_button_gen.go#L1478: return fmt.Errorf("can't decode keyboardButtonUrlAuth#10b78d29 to nil")
tl_keyboard_button_gen.go#L1481: return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: %w", err)
tl_keyboard_button_gen.go#L1489: return fmt.Errorf("can't decode keyboardButtonUrlAuth#10b78d29 to nil")
tl_keyboard_button_gen.go#L1493: return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field flags: %w", err)
tl_keyboard_button_gen.go#L1499: return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field text: %w", err)
tl_keyboard_button_gen.go#L1506: return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field fwd_text: %w", err)
tl_keyboard_button_gen.go#L1513: return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field url: %w", err)
tl_keyboard_button_gen.go#L1520: return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field button_id: %w", err)
tl_keyboard_button_gen.go#L1692: return fmt.Errorf("can't encode inputKeyboardButtonUrlAuth#d02e7fd4 as nil")
tl_keyboard_button_gen.go#L1701: return fmt.Errorf("can't encode inputKeyboardButtonUrlAuth#d02e7fd4 as nil")
tl_keyboard_button_gen.go#L1710: return fmt.Errorf("unable to encode inputKeyboardButtonUrlAuth#d02e7fd4: field flags: %w", err)
tl_keyboard_button_gen.go#L1718: return fmt.Errorf("unable to encode inputKeyboardButtonUrlAuth#d02e7fd4: field bot is nil")
tl_keyboard_button_gen.go#L1721: return fmt.Errorf("unable to encode inputKeyboardButtonUrlAuth#d02e7fd4: field bot: %w", err)
tl_keyboard_button_gen.go#L1775: return fmt.Errorf("can't decode inputKeyboardButtonUrlAuth#d02e7fd4 to nil")
tl_keyboard_button_gen.go#L1778: return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: %w", err)
tl_keyboard_button_gen.go#L1786: return fmt.Errorf("can't decode inputKeyboardButtonUrlAuth#d02e7fd4 to nil")
tl_keyboard_button_gen.go#L1790: return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field flags: %w", err)
tl_keyboard_button_gen.go#L1797: return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field text: %w", err)
tl_keyboard_button_gen.go#L1804: return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field fwd_text: %w", err)
tl_keyboard_button_gen.go#L1811: return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field url: %w", err)
tl_keyboard_button_gen.go#L1818: return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field bot: %w", err)
tl_keyboard_button_gen.go#L1937: return fmt.Errorf("can't encode keyboardButtonRequestPoll#bbc7515d as nil")
tl_keyboard_button_gen.go#L1946: return fmt.Errorf("can't encode keyboardButtonRequestPoll#bbc7515d as nil")
tl_keyboard_button_gen.go#L1952: return fmt.Errorf("unable to encode keyboardButtonRequestPoll#bbc7515d: field flags: %w", err)
tl_keyboard_button_gen.go#L1984: return fmt.Errorf("can't decode keyboardButtonRequestPoll#bbc7515d to nil")
tl_keyboard_button_gen.go#L1987: return fmt.Errorf("unable to decode keyboardButtonRequestPoll#bbc7515d: %w", err)
tl_keyboard_button_gen.go#L1995: return fmt.Errorf("can't decode keyboardButtonRequestPoll#bbc7515d to nil")
tl_keyboard_button_gen.go#L1999: return fmt.Errorf("unable to decode keyboardButtonRequestPoll#bbc7515d: field flags: %w", err)
tl_keyboard_button_gen.go#L2005: return fmt.Errorf("unable to decode keyboardButtonRequestPoll#bbc7515d: field quiz: %w", err)
tl_keyboard_button_gen.go#L2012: return fmt.Errorf("unable to decode keyboardButtonRequestPoll#bbc7515d: field text: %w", err)
tl_keyboard_button_gen.go#L2088: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2095: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2102: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2109: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2116: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2123: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2130: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2137: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2144: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2151: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2158: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
tl_keyboard_button_gen.go#L2162: return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", bin.NewUnexpectedID(id))
tl_keyboard_button_gen.go#L2174: return fmt.Errorf("unable to decode KeyboardButtonBox to nil")
tl_keyboard_button_gen.go#L2178: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_keyboard_button_gen.go#L2187: return fmt.Errorf("unable to encode KeyboardButtonClass as nil")
tl_keyboard_button_row_gen.go#L105: return fmt.Errorf("can't encode keyboardButtonRow#77608b83 as nil")
tl_keyboard_button_row_gen.go#L114: return fmt.Errorf("can't encode keyboardButtonRow#77608b83 as nil")
tl_keyboard_button_row_gen.go#L119: return fmt.Errorf("unable to encode keyboardButtonRow#77608b83: field buttons element with index %d is nil", idx)
tl_keyboard_button_row_gen.go#L122: return fmt.Errorf("unable to encode keyboardButtonRow#77608b83: field buttons element with index %d: %w", idx, err)
tl_keyboard_button_row_gen.go#L141: return fmt.Errorf("can't decode keyboardButtonRow#77608b83 to nil")
tl_keyboard_button_row_gen.go#L144: return fmt.Errorf("unable to decode keyboardButtonRow#77608b83: %w", err)
tl_keyboard_button_row_gen.go#L152: return fmt.Errorf("can't decode keyboardButtonRow#77608b83 to nil")
tl_keyboard_button_row_gen.go#L157: return fmt.Errorf("unable to decode keyboardButtonRow#77608b83: field buttons: %w", err)
tl_keyboard_button_row_gen.go#L162: return fmt.Errorf("unable to decode keyboardButtonRow#77608b83: field buttons: %w", err)
tl_labeled_price_gen.go#L122: return fmt.Errorf("can't encode labeledPrice#cb296bf8 as nil")
tl_labeled_price_gen.go#L131: return fmt.Errorf("can't encode labeledPrice#cb296bf8 as nil")
tl_labeled_price_gen.go#L151: return fmt.Errorf("can't decode labeledPrice#cb296bf8 to nil")
tl_labeled_price_gen.go#L154: return fmt.Errorf("unable to decode labeledPrice#cb296bf8: %w", err)
tl_labeled_price_gen.go#L162: return fmt.Errorf("can't decode labeledPrice#cb296bf8 to nil")
tl_labeled_price_gen.go#L167: return fmt.Errorf("unable to decode labeledPrice#cb296bf8: field label: %w", err)
tl_labeled_price_gen.go#L174: return fmt.Errorf("unable to decode labeledPrice#cb296bf8: field amount: %w", err)
tl_lang_pack_difference_gen.go#L138: return fmt.Errorf("can't encode langPackDifference#f385c1f6 as nil")
tl_lang_pack_difference_gen.go#L147: return fmt.Errorf("can't encode langPackDifference#f385c1f6 as nil")
tl_lang_pack_difference_gen.go#L155: return fmt.Errorf("unable to encode langPackDifference#f385c1f6: field strings element with index %d is nil", idx)
tl_lang_pack_difference_gen.go#L158: return fmt.Errorf("unable to encode langPackDifference#f385c1f6: field strings element with index %d: %w", idx, err)
tl_lang_pack_difference_gen.go#L192: return fmt.Errorf("can't decode langPackDifference#f385c1f6 to nil")
tl_lang_pack_difference_gen.go#L195: return fmt.Errorf("unable to decode langPackDifference#f385c1f6: %w", err)
tl_lang_pack_difference_gen.go#L203: return fmt.Errorf("can't decode langPackDifference#f385c1f6 to nil")
tl_lang_pack_difference_gen.go#L208: return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field lang_code: %w", err)
tl_lang_pack_difference_gen.go#L215: return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field from_version: %w", err)
tl_lang_pack_difference_gen.go#L222: return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field version: %w", err)
tl_lang_pack_difference_gen.go#L229: return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field strings: %w", err)
tl_lang_pack_difference_gen.go#L234: return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field strings: %w", err)
tl_lang_pack_language_gen.go#L238: return fmt.Errorf("can't encode langPackLanguage#eeca5ce3 as nil")
tl_lang_pack_language_gen.go#L247: return fmt.Errorf("can't encode langPackLanguage#eeca5ce3 as nil")
tl_lang_pack_language_gen.go#L262: return fmt.Errorf("unable to encode langPackLanguage#eeca5ce3: field flags: %w", err)
tl_lang_pack_language_gen.go#L378: return fmt.Errorf("can't decode langPackLanguage#eeca5ce3 to nil")
tl_lang_pack_language_gen.go#L381: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: %w", err)
tl_lang_pack_language_gen.go#L389: return fmt.Errorf("can't decode langPackLanguage#eeca5ce3 to nil")
tl_lang_pack_language_gen.go#L393: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field flags: %w", err)
tl_lang_pack_language_gen.go#L402: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field name: %w", err)
tl_lang_pack_language_gen.go#L409: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field native_name: %w", err)
tl_lang_pack_language_gen.go#L416: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field lang_code: %w", err)
tl_lang_pack_language_gen.go#L423: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field base_lang_code: %w", err)
tl_lang_pack_language_gen.go#L430: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field plural_code: %w", err)
tl_lang_pack_language_gen.go#L437: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field strings_count: %w", err)
tl_lang_pack_language_gen.go#L444: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field translated_count: %w", err)
tl_lang_pack_language_gen.go#L451: return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field translations_url: %w", err)
tl_lang_pack_language_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_lang_pack_language_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_lang_pack_language_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_lang_pack_language_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_lang_pack_language_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_lang_pack_language_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_lang_pack_language_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_lang_pack_string_class_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_lang_pack_string_class_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_lang_pack_string_class_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d is nil", idx)
tl_lang_pack_string_class_vector_gen.go#L119: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_lang_pack_string_class_vector_gen.go#L138: return fmt.Errorf("can't decode Vector to nil")
tl_lang_pack_string_class_vector_gen.go#L147: return fmt.Errorf("can't decode Vector to nil")
tl_lang_pack_string_class_vector_gen.go#L152: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_lang_pack_string_class_vector_gen.go#L157: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_lang_pack_string_gen.go#L116: return fmt.Errorf("can't encode langPackString#cad181f6 as nil")
tl_lang_pack_string_gen.go#L125: return fmt.Errorf("can't encode langPackString#cad181f6 as nil")
tl_lang_pack_string_gen.go#L145: return fmt.Errorf("can't decode langPackString#cad181f6 to nil")
tl_lang_pack_string_gen.go#L148: return fmt.Errorf("unable to decode langPackString#cad181f6: %w", err)
tl_lang_pack_string_gen.go#L156: return fmt.Errorf("can't decode langPackString#cad181f6 to nil")
tl_lang_pack_string_gen.go#L161: return fmt.Errorf("unable to decode langPackString#cad181f6: field key: %w", err)
tl_lang_pack_string_gen.go#L168: return fmt.Errorf("unable to decode langPackString#cad181f6: field value: %w", err)
tl_lang_pack_string_gen.go#L370: return fmt.Errorf("can't encode langPackStringPluralized#6c47ac9f as nil")
tl_lang_pack_string_gen.go#L379: return fmt.Errorf("can't encode langPackStringPluralized#6c47ac9f as nil")
tl_lang_pack_string_gen.go#L397: return fmt.Errorf("unable to encode langPackStringPluralized#6c47ac9f: field flags: %w", err)
tl_lang_pack_string_gen.go#L507: return fmt.Errorf("can't decode langPackStringPluralized#6c47ac9f to nil")
tl_lang_pack_string_gen.go#L510: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: %w", err)
tl_lang_pack_string_gen.go#L518: return fmt.Errorf("can't decode langPackStringPluralized#6c47ac9f to nil")
tl_lang_pack_string_gen.go#L522: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field flags: %w", err)
tl_lang_pack_string_gen.go#L528: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field key: %w", err)
tl_lang_pack_string_gen.go#L535: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field zero_value: %w", err)
tl_lang_pack_string_gen.go#L542: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field one_value: %w", err)
tl_lang_pack_string_gen.go#L549: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field two_value: %w", err)
tl_lang_pack_string_gen.go#L556: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field few_value: %w", err)
tl_lang_pack_string_gen.go#L563: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field many_value: %w", err)
tl_lang_pack_string_gen.go#L570: return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field other_value: %w", err)
tl_lang_pack_string_gen.go#L663: return fmt.Errorf("can't encode langPackStringDeleted#2979eeb2 as nil")
tl_lang_pack_string_gen.go#L672: return fmt.Errorf("can't encode langPackStringDeleted#2979eeb2 as nil")
tl_lang_pack_string_gen.go#L686: return fmt.Errorf("can't decode langPackStringDeleted#2979eeb2 to nil")
tl_lang_pack_string_gen.go#L689: return fmt.Errorf("unable to decode langPackStringDeleted#2979eeb2: %w", err)
tl_lang_pack_string_gen.go#L697: return fmt.Errorf("can't decode langPackStringDeleted#2979eeb2 to nil")
tl_lang_pack_string_gen.go#L702: return fmt.Errorf("unable to decode langPackStringDeleted#2979eeb2: field key: %w", err)
tl_lang_pack_string_gen.go#L770: return nil, fmt.Errorf("unable to decode LangPackStringClass: %w", err)
tl_lang_pack_string_gen.go#L777: return nil, fmt.Errorf("unable to decode LangPackStringClass: %w", err)
tl_lang_pack_string_gen.go#L784: return nil, fmt.Errorf("unable to decode LangPackStringClass: %w", err)
tl_lang_pack_string_gen.go#L788: return nil, fmt.Errorf("unable to decode LangPackStringClass: %w", bin.NewUnexpectedID(id))
tl_lang_pack_string_gen.go#L800: return fmt.Errorf("unable to decode LangPackStringBox to nil")
tl_lang_pack_string_gen.go#L804: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_lang_pack_string_gen.go#L813: return fmt.Errorf("unable to encode LangPackStringClass as nil")
tl_langpack_get_difference_gen.go#L127: return fmt.Errorf("can't encode langpack.getDifference#cd984aa5 as nil")
tl_langpack_get_difference_gen.go#L136: return fmt.Errorf("can't encode langpack.getDifference#cd984aa5 as nil")
tl_langpack_get_difference_gen.go#L162: return fmt.Errorf("can't decode langpack.getDifference#cd984aa5 to nil")
tl_langpack_get_difference_gen.go#L165: return fmt.Errorf("unable to decode langpack.getDifference#cd984aa5: %w", err)
tl_langpack_get_difference_gen.go#L173: return fmt.Errorf("can't decode langpack.getDifference#cd984aa5 to nil")
tl_langpack_get_difference_gen.go#L178: return fmt.Errorf("unable to decode langpack.getDifference#cd984aa5: field lang_pack: %w", err)
tl_langpack_get_difference_gen.go#L185: return fmt.Errorf("unable to decode langpack.getDifference#cd984aa5: field lang_code: %w", err)
tl_langpack_get_difference_gen.go#L192: return fmt.Errorf("unable to decode langpack.getDifference#cd984aa5: field from_version: %w", err)
tl_langpack_get_lang_pack_gen.go#L116: return fmt.Errorf("can't encode langpack.getLangPack#f2f2330a as nil")
tl_langpack_get_lang_pack_gen.go#L125: return fmt.Errorf("can't encode langpack.getLangPack#f2f2330a as nil")
tl_langpack_get_lang_pack_gen.go#L145: return fmt.Errorf("can't decode langpack.getLangPack#f2f2330a to nil")
tl_langpack_get_lang_pack_gen.go#L148: return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: %w", err)
tl_langpack_get_lang_pack_gen.go#L156: return fmt.Errorf("can't decode langpack.getLangPack#f2f2330a to nil")
tl_langpack_get_lang_pack_gen.go#L161: return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: field lang_pack: %w", err)
tl_langpack_get_lang_pack_gen.go#L168: return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: field lang_code: %w", err)
tl_langpack_get_language_gen.go#L116: return fmt.Errorf("can't encode langpack.getLanguage#6a596502 as nil")
tl_langpack_get_language_gen.go#L125: return fmt.Errorf("can't encode langpack.getLanguage#6a596502 as nil")
tl_langpack_get_language_gen.go#L145: return fmt.Errorf("can't decode langpack.getLanguage#6a596502 to nil")
tl_langpack_get_language_gen.go#L148: return fmt.Errorf("unable to decode langpack.getLanguage#6a596502: %w", err)
tl_langpack_get_language_gen.go#L156: return fmt.Errorf("can't decode langpack.getLanguage#6a596502 to nil")
tl_langpack_get_language_gen.go#L161: return fmt.Errorf("unable to decode langpack.getLanguage#6a596502: field lang_pack: %w", err)
tl_langpack_get_language_gen.go#L168: return fmt.Errorf("unable to decode langpack.getLanguage#6a596502: field lang_code: %w", err)
tl_langpack_get_languages_gen.go#L105: return fmt.Errorf("can't encode langpack.getLanguages#42c6978f as nil")
tl_langpack_get_languages_gen.go#L114: return fmt.Errorf("can't encode langpack.getLanguages#42c6978f as nil")
tl_langpack_get_languages_gen.go#L128: return fmt.Errorf("can't decode langpack.getLanguages#42c6978f to nil")
tl_langpack_get_languages_gen.go#L131: return fmt.Errorf("unable to decode langpack.getLanguages#42c6978f: %w", err)
tl_langpack_get_languages_gen.go#L139: return fmt.Errorf("can't decode langpack.getLanguages#42c6978f to nil")
tl_langpack_get_languages_gen.go#L144: return fmt.Errorf("unable to decode langpack.getLanguages#42c6978f: field lang_pack: %w", err)
tl_langpack_get_strings_gen.go#L127: return fmt.Errorf("can't encode langpack.getStrings#efea3803 as nil")
tl_langpack_get_strings_gen.go#L136: return fmt.Errorf("can't encode langpack.getStrings#efea3803 as nil")
tl_langpack_get_strings_gen.go#L165: return fmt.Errorf("can't decode langpack.getStrings#efea3803 to nil")
tl_langpack_get_strings_gen.go#L168: return fmt.Errorf("unable to decode langpack.getStrings#efea3803: %w", err)
tl_langpack_get_strings_gen.go#L176: return fmt.Errorf("can't decode langpack.getStrings#efea3803 to nil")
tl_langpack_get_strings_gen.go#L181: return fmt.Errorf("unable to decode langpack.getStrings#efea3803: field lang_pack: %w", err)
tl_langpack_get_strings_gen.go#L188: return fmt.Errorf("unable to decode langpack.getStrings#efea3803: field lang_code: %w", err)
tl_langpack_get_strings_gen.go#L195: return fmt.Errorf("unable to decode langpack.getStrings#efea3803: field keys: %w", err)
tl_langpack_get_strings_gen.go#L200: return fmt.Errorf("unable to decode langpack.getStrings#efea3803: field keys: %w", err)
tl_long_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_long_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_long_vector_gen.go#L128: return fmt.Errorf("can't decode Vector to nil")
tl_long_vector_gen.go#L137: return fmt.Errorf("can't decode Vector to nil")
tl_long_vector_gen.go#L142: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_long_vector_gen.go#L147: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_mask_coords_gen.go#L143: return fmt.Errorf("can't encode maskCoords#aed6dbb2 as nil")
tl_mask_coords_gen.go#L152: return fmt.Errorf("can't encode maskCoords#aed6dbb2 as nil")
tl_mask_coords_gen.go#L184: return fmt.Errorf("can't decode maskCoords#aed6dbb2 to nil")
tl_mask_coords_gen.go#L187: return fmt.Errorf("unable to decode maskCoords#aed6dbb2: %w", err)
tl_mask_coords_gen.go#L195: return fmt.Errorf("can't decode maskCoords#aed6dbb2 to nil")
tl_mask_coords_gen.go#L200: return fmt.Errorf("unable to decode maskCoords#aed6dbb2: field n: %w", err)
tl_mask_coords_gen.go#L207: return fmt.Errorf("unable to decode maskCoords#aed6dbb2: field x: %w", err)
tl_mask_coords_gen.go#L214: return fmt.Errorf("unable to decode maskCoords#aed6dbb2: field y: %w", err)
tl_mask_coords_gen.go#L221: return fmt.Errorf("unable to decode maskCoords#aed6dbb2: field zoom: %w", err)
tl_message_action_gen.go#L88: return fmt.Errorf("can't encode messageActionEmpty#b6aef7b0 as nil")
tl_message_action_gen.go#L97: return fmt.Errorf("can't encode messageActionEmpty#b6aef7b0 as nil")
tl_message_action_gen.go#L105: return fmt.Errorf("can't decode messageActionEmpty#b6aef7b0 to nil")
tl_message_action_gen.go#L108: return fmt.Errorf("unable to decode messageActionEmpty#b6aef7b0: %w", err)
tl_message_action_gen.go#L116: return fmt.Errorf("can't decode messageActionEmpty#b6aef7b0 to nil")
tl_message_action_gen.go#L218: return fmt.Errorf("can't encode messageActionChatCreate#a6638b9a as nil")
tl_message_action_gen.go#L227: return fmt.Errorf("can't encode messageActionChatCreate#a6638b9a as nil")
tl_message_action_gen.go#L250: return fmt.Errorf("can't decode messageActionChatCreate#a6638b9a to nil")
tl_message_action_gen.go#L253: return fmt.Errorf("unable to decode messageActionChatCreate#a6638b9a: %w", err)
tl_message_action_gen.go#L261: return fmt.Errorf("can't decode messageActionChatCreate#a6638b9a to nil")
tl_message_action_gen.go#L266: return fmt.Errorf("unable to decode messageActionChatCreate#a6638b9a: field title: %w", err)
tl_message_action_gen.go#L273: return fmt.Errorf("unable to decode messageActionChatCreate#a6638b9a: field users: %w", err)
tl_message_action_gen.go#L278: return fmt.Errorf("unable to decode messageActionChatCreate#a6638b9a: field users: %w", err)
tl_message_action_gen.go#L372: return fmt.Errorf("can't encode messageActionChatEditTitle#b5a1ce5a as nil")
tl_message_action_gen.go#L381: return fmt.Errorf("can't encode messageActionChatEditTitle#b5a1ce5a as nil")
tl_message_action_gen.go#L395: return fmt.Errorf("can't decode messageActionChatEditTitle#b5a1ce5a to nil")
tl_message_action_gen.go#L398: return fmt.Errorf("unable to decode messageActionChatEditTitle#b5a1ce5a: %w", err)
tl_message_action_gen.go#L406: return fmt.Errorf("can't decode messageActionChatEditTitle#b5a1ce5a to nil")
tl_message_action_gen.go#L411: return fmt.Errorf("unable to decode messageActionChatEditTitle#b5a1ce5a: field title: %w", err)
tl_message_action_gen.go#L504: return fmt.Errorf("can't encode messageActionChatEditPhoto#7fcb13a8 as nil")
tl_message_action_gen.go#L513: return fmt.Errorf("can't encode messageActionChatEditPhoto#7fcb13a8 as nil")
tl_message_action_gen.go#L516: return fmt.Errorf("unable to encode messageActionChatEditPhoto#7fcb13a8: field photo is nil")
tl_message_action_gen.go#L519: return fmt.Errorf("unable to encode messageActionChatEditPhoto#7fcb13a8: field photo: %w", err)
tl_message_action_gen.go#L532: return fmt.Errorf("can't decode messageActionChatEditPhoto#7fcb13a8 to nil")
tl_message_action_gen.go#L535: return fmt.Errorf("unable to decode messageActionChatEditPhoto#7fcb13a8: %w", err)
tl_message_action_gen.go#L543: return fmt.Errorf("can't decode messageActionChatEditPhoto#7fcb13a8 to nil")
tl_message_action_gen.go#L548: return fmt.Errorf("unable to decode messageActionChatEditPhoto#7fcb13a8: field photo: %w", err)
tl_message_action_gen.go#L624: return fmt.Errorf("can't encode messageActionChatDeletePhoto#95e3fbef as nil")
tl_message_action_gen.go#L633: return fmt.Errorf("can't encode messageActionChatDeletePhoto#95e3fbef as nil")
tl_message_action_gen.go#L641: return fmt.Errorf("can't decode messageActionChatDeletePhoto#95e3fbef to nil")
tl_message_action_gen.go#L644: return fmt.Errorf("unable to decode messageActionChatDeletePhoto#95e3fbef: %w", err)
tl_message_action_gen.go#L652: return fmt.Errorf("can't decode messageActionChatDeletePhoto#95e3fbef to nil")
tl_message_action_gen.go#L743: return fmt.Errorf("can't encode messageActionChatAddUser#488a7337 as nil")
tl_message_action_gen.go#L752: return fmt.Errorf("can't encode messageActionChatAddUser#488a7337 as nil")
tl_message_action_gen.go#L769: return fmt.Errorf("can't decode messageActionChatAddUser#488a7337 to nil")
tl_message_action_gen.go#L772: return fmt.Errorf("unable to decode messageActionChatAddUser#488a7337: %w", err)
tl_message_action_gen.go#L780: return fmt.Errorf("can't decode messageActionChatAddUser#488a7337 to nil")
tl_message_action_gen.go#L785: return fmt.Errorf("unable to decode messageActionChatAddUser#488a7337: field users: %w", err)
tl_message_action_gen.go#L790: return fmt.Errorf("unable to decode messageActionChatAddUser#488a7337: field users: %w", err)
tl_message_action_gen.go#L884: return fmt.Errorf("can't encode messageActionChatDeleteUser#b2ae9b0c as nil")
tl_message_action_gen.go#L893: return fmt.Errorf("can't encode messageActionChatDeleteUser#b2ae9b0c as nil")
tl_message_action_gen.go#L907: return fmt.Errorf("can't decode messageActionChatDeleteUser#b2ae9b0c to nil")
tl_message_action_gen.go#L910: return fmt.Errorf("unable to decode messageActionChatDeleteUser#b2ae9b0c: %w", err)
tl_message_action_gen.go#L918: return fmt.Errorf("can't decode messageActionChatDeleteUser#b2ae9b0c to nil")
tl_message_action_gen.go#L923: return fmt.Errorf("unable to decode messageActionChatDeleteUser#b2ae9b0c: field user_id: %w", err)
tl_message_action_gen.go#L1016: return fmt.Errorf("can't encode messageActionChatJoinedByLink#f89cf5e8 as nil")
tl_message_action_gen.go#L1025: return fmt.Errorf("can't encode messageActionChatJoinedByLink#f89cf5e8 as nil")
tl_message_action_gen.go#L1039: return fmt.Errorf("can't decode messageActionChatJoinedByLink#f89cf5e8 to nil")
tl_message_action_gen.go#L1042: return fmt.Errorf("unable to decode messageActionChatJoinedByLink#f89cf5e8: %w", err)
tl_message_action_gen.go#L1050: return fmt.Errorf("can't decode messageActionChatJoinedByLink#f89cf5e8 to nil")
tl_message_action_gen.go#L1055: return fmt.Errorf("unable to decode messageActionChatJoinedByLink#f89cf5e8: field inviter_id: %w", err)
tl_message_action_gen.go#L1148: return fmt.Errorf("can't encode messageActionChannelCreate#95d2ac92 as nil")
tl_message_action_gen.go#L1157: return fmt.Errorf("can't encode messageActionChannelCreate#95d2ac92 as nil")
tl_message_action_gen.go#L1171: return fmt.Errorf("can't decode messageActionChannelCreate#95d2ac92 to nil")
tl_message_action_gen.go#L1174: return fmt.Errorf("unable to decode messageActionChannelCreate#95d2ac92: %w", err)
tl_message_action_gen.go#L1182: return fmt.Errorf("can't decode messageActionChannelCreate#95d2ac92 to nil")
tl_message_action_gen.go#L1187: return fmt.Errorf("unable to decode messageActionChannelCreate#95d2ac92: field title: %w", err)
tl_message_action_gen.go#L1283: return fmt.Errorf("can't encode messageActionChatMigrateTo#51bdb021 as nil")
tl_message_action_gen.go#L1292: return fmt.Errorf("can't encode messageActionChatMigrateTo#51bdb021 as nil")
tl_message_action_gen.go#L1306: return fmt.Errorf("can't decode messageActionChatMigrateTo#51bdb021 to nil")
tl_message_action_gen.go#L1309: return fmt.Errorf("unable to decode messageActionChatMigrateTo#51bdb021: %w", err)
tl_message_action_gen.go#L1317: return fmt.Errorf("can't decode messageActionChatMigrateTo#51bdb021 to nil")
tl_message_action_gen.go#L1322: return fmt.Errorf("unable to decode messageActionChatMigrateTo#51bdb021: field channel_id: %w", err)
tl_message_action_gen.go#L1429: return fmt.Errorf("can't encode messageActionChannelMigrateFrom#b055eaee as nil")
tl_message_action_gen.go#L1438: return fmt.Errorf("can't encode messageActionChannelMigrateFrom#b055eaee as nil")
tl_message_action_gen.go#L1458: return fmt.Errorf("can't decode messageActionChannelMigrateFrom#b055eaee to nil")
tl_message_action_gen.go#L1461: return fmt.Errorf("unable to decode messageActionChannelMigrateFrom#b055eaee: %w", err)
tl_message_action_gen.go#L1469: return fmt.Errorf("can't decode messageActionChannelMigrateFrom#b055eaee to nil")
tl_message_action_gen.go#L1474: return fmt.Errorf("unable to decode messageActionChannelMigrateFrom#b055eaee: field title: %w", err)
tl_message_action_gen.go#L1481: return fmt.Errorf("unable to decode messageActionChannelMigrateFrom#b055eaee: field chat_id: %w", err)
tl_message_action_gen.go#L1557: return fmt.Errorf("can't encode messageActionPinMessage#94bd38ed as nil")
tl_message_action_gen.go#L1566: return fmt.Errorf("can't encode messageActionPinMessage#94bd38ed as nil")
tl_message_action_gen.go#L1574: return fmt.Errorf("can't decode messageActionPinMessage#94bd38ed to nil")
tl_message_action_gen.go#L1577: return fmt.Errorf("unable to decode messageActionPinMessage#94bd38ed: %w", err)
tl_message_action_gen.go#L1585: return fmt.Errorf("can't decode messageActionPinMessage#94bd38ed to nil")
tl_message_action_gen.go#L1659: return fmt.Errorf("can't encode messageActionHistoryClear#9fbab604 as nil")
tl_message_action_gen.go#L1668: return fmt.Errorf("can't encode messageActionHistoryClear#9fbab604 as nil")
tl_message_action_gen.go#L1676: return fmt.Errorf("can't decode messageActionHistoryClear#9fbab604 to nil")
tl_message_action_gen.go#L1679: return fmt.Errorf("unable to decode messageActionHistoryClear#9fbab604: %w", err)
tl_message_action_gen.go#L1687: return fmt.Errorf("can't decode messageActionHistoryClear#9fbab604 to nil")
tl_message_action_gen.go#L1789: return fmt.Errorf("can't encode messageActionGameScore#92a72876 as nil")
tl_message_action_gen.go#L1798: return fmt.Errorf("can't encode messageActionGameScore#92a72876 as nil")
tl_message_action_gen.go#L1818: return fmt.Errorf("can't decode messageActionGameScore#92a72876 to nil")
tl_message_action_gen.go#L1821: return fmt.Errorf("unable to decode messageActionGameScore#92a72876: %w", err)
tl_message_action_gen.go#L1829: return fmt.Errorf("can't decode messageActionGameScore#92a72876 to nil")
tl_message_action_gen.go#L1834: return fmt.Errorf("unable to decode messageActionGameScore#92a72876: field game_id: %w", err)
tl_message_action_gen.go#L1841: return fmt.Errorf("unable to decode messageActionGameScore#92a72876: field score: %w", err)
tl_message_action_gen.go#L2018: return fmt.Errorf("can't encode messageActionPaymentSentMe#8f31b327 as nil")
tl_message_action_gen.go#L2027: return fmt.Errorf("can't encode messageActionPaymentSentMe#8f31b327 as nil")
tl_message_action_gen.go#L2036: return fmt.Errorf("unable to encode messageActionPaymentSentMe#8f31b327: field flags: %w", err)
tl_message_action_gen.go#L2043: return fmt.Errorf("unable to encode messageActionPaymentSentMe#8f31b327: field info: %w", err)
tl_message_action_gen.go#L2050: return fmt.Errorf("unable to encode messageActionPaymentSentMe#8f31b327: field charge: %w", err)
tl_message_action_gen.go#L2108: return fmt.Errorf("can't decode messageActionPaymentSentMe#8f31b327 to nil")
tl_message_action_gen.go#L2111: return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: %w", err)
tl_message_action_gen.go#L2119: return fmt.Errorf("can't decode messageActionPaymentSentMe#8f31b327 to nil")
tl_message_action_gen.go#L2123: return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field flags: %w", err)
tl_message_action_gen.go#L2129: return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field currency: %w", err)
tl_message_action_gen.go#L2136: return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field total_amount: %w", err)
tl_message_action_gen.go#L2143: return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field payload: %w", err)
tl_message_action_gen.go#L2149: return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field info: %w", err)
tl_message_action_gen.go#L2155: return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field shipping_option_id: %w", err)
tl_message_action_gen.go#L2161: return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field charge: %w", err)
tl_message_action_gen.go#L2273: return fmt.Errorf("can't encode messageActionPaymentSent#40699cd0 as nil")
tl_message_action_gen.go#L2282: return fmt.Errorf("can't encode messageActionPaymentSent#40699cd0 as nil")
tl_message_action_gen.go#L2302: return fmt.Errorf("can't decode messageActionPaymentSent#40699cd0 to nil")
tl_message_action_gen.go#L2305: return fmt.Errorf("unable to decode messageActionPaymentSent#40699cd0: %w", err)
tl_message_action_gen.go#L2313: return fmt.Errorf("can't decode messageActionPaymentSent#40699cd0 to nil")
tl_message_action_gen.go#L2318: return fmt.Errorf("unable to decode messageActionPaymentSent#40699cd0: field currency: %w", err)
tl_message_action_gen.go#L2325: return fmt.Errorf("unable to decode messageActionPaymentSent#40699cd0: field total_amount: %w", err)
tl_message_action_gen.go#L2472: return fmt.Errorf("can't encode messageActionPhoneCall#80e11a7f as nil")
tl_message_action_gen.go#L2481: return fmt.Errorf("can't encode messageActionPhoneCall#80e11a7f as nil")
tl_message_action_gen.go#L2493: return fmt.Errorf("unable to encode messageActionPhoneCall#80e11a7f: field flags: %w", err)
tl_message_action_gen.go#L2498: return fmt.Errorf("unable to encode messageActionPhoneCall#80e11a7f: field reason is nil")
tl_message_action_gen.go#L2501: return fmt.Errorf("unable to encode messageActionPhoneCall#80e11a7f: field reason: %w", err)
tl_message_action_gen.go#L2564: return fmt.Errorf("can't decode messageActionPhoneCall#80e11a7f to nil")
tl_message_action_gen.go#L2567: return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: %w", err)
tl_message_action_gen.go#L2575: return fmt.Errorf("can't decode messageActionPhoneCall#80e11a7f to nil")
tl_message_action_gen.go#L2579: return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: field flags: %w", err)
tl_message_action_gen.go#L2586: return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: field call_id: %w", err)
tl_message_action_gen.go#L2593: return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: field reason: %w", err)
tl_message_action_gen.go#L2600: return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: field duration: %w", err)
tl_message_action_gen.go#L2676: return fmt.Errorf("can't encode messageActionScreenshotTaken#4792929b as nil")
tl_message_action_gen.go#L2685: return fmt.Errorf("can't encode messageActionScreenshotTaken#4792929b as nil")
tl_message_action_gen.go#L2693: return fmt.Errorf("can't decode messageActionScreenshotTaken#4792929b to nil")
tl_message_action_gen.go#L2696: return fmt.Errorf("unable to decode messageActionScreenshotTaken#4792929b: %w", err)
tl_message_action_gen.go#L2704: return fmt.Errorf("can't decode messageActionScreenshotTaken#4792929b to nil")
tl_message_action_gen.go#L2796: return fmt.Errorf("can't encode messageActionCustomAction#fae69f56 as nil")
tl_message_action_gen.go#L2805: return fmt.Errorf("can't encode messageActionCustomAction#fae69f56 as nil")
tl_message_action_gen.go#L2819: return fmt.Errorf("can't decode messageActionCustomAction#fae69f56 to nil")
tl_message_action_gen.go#L2822: return fmt.Errorf("unable to decode messageActionCustomAction#fae69f56: %w", err)
tl_message_action_gen.go#L2830: return fmt.Errorf("can't decode messageActionCustomAction#fae69f56 to nil")
tl_message_action_gen.go#L2835: return fmt.Errorf("unable to decode messageActionCustomAction#fae69f56: field message: %w", err)
tl_message_action_gen.go#L2932: return fmt.Errorf("can't encode messageActionBotAllowed#abe9affe as nil")
tl_message_action_gen.go#L2941: return fmt.Errorf("can't encode messageActionBotAllowed#abe9affe as nil")
tl_message_action_gen.go#L2955: return fmt.Errorf("can't decode messageActionBotAllowed#abe9affe to nil")
tl_message_action_gen.go#L2958: return fmt.Errorf("unable to decode messageActionBotAllowed#abe9affe: %w", err)
tl_message_action_gen.go#L2966: return fmt.Errorf("can't decode messageActionBotAllowed#abe9affe to nil")
tl_message_action_gen.go#L2971: return fmt.Errorf("unable to decode messageActionBotAllowed#abe9affe: field domain: %w", err)
tl_message_action_gen.go#L3079: return fmt.Errorf("can't encode messageActionSecureValuesSentMe#1b287353 as nil")
tl_message_action_gen.go#L3088: return fmt.Errorf("can't encode messageActionSecureValuesSentMe#1b287353 as nil")
tl_message_action_gen.go#L3093: return fmt.Errorf("unable to encode messageActionSecureValuesSentMe#1b287353: field values element with index %d: %w", idx, err)
tl_message_action_gen.go#L3097: return fmt.Errorf("unable to encode messageActionSecureValuesSentMe#1b287353: field credentials: %w", err)
tl_message_action_gen.go#L3115: return fmt.Errorf("can't decode messageActionSecureValuesSentMe#1b287353 to nil")
tl_message_action_gen.go#L3118: return fmt.Errorf("unable to decode messageActionSecureValuesSentMe#1b287353: %w", err)
tl_message_action_gen.go#L3126: return fmt.Errorf("can't decode messageActionSecureValuesSentMe#1b287353 to nil")
tl_message_action_gen.go#L3131: return fmt.Errorf("unable to decode messageActionSecureValuesSentMe#1b287353: field values: %w", err)
tl_message_action_gen.go#L3136: return fmt.Errorf("unable to decode messageActionSecureValuesSentMe#1b287353: field values: %w", err)
tl_message_action_gen.go#L3143: return fmt.Errorf("unable to decode messageActionSecureValuesSentMe#1b287353: field credentials: %w", err)
tl_message_action_gen.go#L3238: return fmt.Errorf("can't encode messageActionSecureValuesSent#d95c6154 as nil")
tl_message_action_gen.go#L3247: return fmt.Errorf("can't encode messageActionSecureValuesSent#d95c6154 as nil")
tl_message_action_gen.go#L3252: return fmt.Errorf("unable to encode messageActionSecureValuesSent#d95c6154: field types element with index %d is nil", idx)
tl_message_action_gen.go#L3255: return fmt.Errorf("unable to encode messageActionSecureValuesSent#d95c6154: field types element with index %d: %w", idx, err)
tl_message_action_gen.go#L3274: return fmt.Errorf("can't decode messageActionSecureValuesSent#d95c6154 to nil")
tl_message_action_gen.go#L3277: return fmt.Errorf("unable to decode messageActionSecureValuesSent#d95c6154: %w", err)
tl_message_action_gen.go#L3285: return fmt.Errorf("can't decode messageActionSecureValuesSent#d95c6154 to nil")
tl_message_action_gen.go#L3290: return fmt.Errorf("unable to decode messageActionSecureValuesSent#d95c6154: field types: %w", err)
tl_message_action_gen.go#L3295: return fmt.Errorf("unable to decode messageActionSecureValuesSent#d95c6154: field types: %w", err)
tl_message_action_gen.go#L3372: return fmt.Errorf("can't encode messageActionContactSignUp#f3f25f76 as nil")
tl_message_action_gen.go#L3381: return fmt.Errorf("can't encode messageActionContactSignUp#f3f25f76 as nil")
tl_message_action_gen.go#L3389: return fmt.Errorf("can't decode messageActionContactSignUp#f3f25f76 to nil")
tl_message_action_gen.go#L3392: return fmt.Errorf("unable to decode messageActionContactSignUp#f3f25f76: %w", err)
tl_message_action_gen.go#L3400: return fmt.Errorf("can't decode messageActionContactSignUp#f3f25f76 to nil")
tl_message_action_gen.go#L3516: return fmt.Errorf("can't encode messageActionGeoProximityReached#98e0d697 as nil")
tl_message_action_gen.go#L3525: return fmt.Errorf("can't encode messageActionGeoProximityReached#98e0d697 as nil")
tl_message_action_gen.go#L3528: return fmt.Errorf("unable to encode messageActionGeoProximityReached#98e0d697: field from_id is nil")
tl_message_action_gen.go#L3531: return fmt.Errorf("unable to encode messageActionGeoProximityReached#98e0d697: field from_id: %w", err)
tl_message_action_gen.go#L3534: return fmt.Errorf("unable to encode messageActionGeoProximityReached#98e0d697: field to_id is nil")
tl_message_action_gen.go#L3537: return fmt.Errorf("unable to encode messageActionGeoProximityReached#98e0d697: field to_id: %w", err)
tl_message_action_gen.go#L3561: return fmt.Errorf("can't decode messageActionGeoProximityReached#98e0d697 to nil")
tl_message_action_gen.go#L3564: return fmt.Errorf("unable to decode messageActionGeoProximityReached#98e0d697: %w", err)
tl_message_action_gen.go#L3572: return fmt.Errorf("can't decode messageActionGeoProximityReached#98e0d697 to nil")
tl_message_action_gen.go#L3577: return fmt.Errorf("unable to decode messageActionGeoProximityReached#98e0d697: field from_id: %w", err)
tl_message_action_gen.go#L3584: return fmt.Errorf("unable to decode messageActionGeoProximityReached#98e0d697: field to_id: %w", err)
tl_message_action_gen.go#L3591: return fmt.Errorf("unable to decode messageActionGeoProximityReached#98e0d697: field distance: %w", err)
tl_message_action_gen.go#L3705: return fmt.Errorf("can't encode messageActionGroupCall#7a0d7f42 as nil")
tl_message_action_gen.go#L3714: return fmt.Errorf("can't encode messageActionGroupCall#7a0d7f42 as nil")
tl_message_action_gen.go#L3720: return fmt.Errorf("unable to encode messageActionGroupCall#7a0d7f42: field flags: %w", err)
tl_message_action_gen.go#L3723: return fmt.Errorf("unable to encode messageActionGroupCall#7a0d7f42: field call: %w", err)
tl_message_action_gen.go#L3754: return fmt.Errorf("can't decode messageActionGroupCall#7a0d7f42 to nil")
tl_message_action_gen.go#L3757: return fmt.Errorf("unable to decode messageActionGroupCall#7a0d7f42: %w", err)
tl_message_action_gen.go#L3765: return fmt.Errorf("can't decode messageActionGroupCall#7a0d7f42 to nil")
tl_message_action_gen.go#L3769: return fmt.Errorf("unable to decode messageActionGroupCall#7a0d7f42: field flags: %w", err)
tl_message_action_gen.go#L3774: return fmt.Errorf("unable to decode messageActionGroupCall#7a0d7f42: field call: %w", err)
tl_message_action_gen.go#L3780: return fmt.Errorf("unable to decode messageActionGroupCall#7a0d7f42: field duration: %w", err)
tl_message_action_gen.go#L3883: return fmt.Errorf("can't encode messageActionInviteToGroupCall#76b9f11a as nil")
tl_message_action_gen.go#L3892: return fmt.Errorf("can't encode messageActionInviteToGroupCall#76b9f11a as nil")
tl_message_action_gen.go#L3895: return fmt.Errorf("unable to encode messageActionInviteToGroupCall#76b9f11a: field call: %w", err)
tl_message_action_gen.go#L3917: return fmt.Errorf("can't decode messageActionInviteToGroupCall#76b9f11a to nil")
tl_message_action_gen.go#L3920: return fmt.Errorf("unable to decode messageActionInviteToGroupCall#76b9f11a: %w", err)
tl_message_action_gen.go#L3928: return fmt.Errorf("can't decode messageActionInviteToGroupCall#76b9f11a to nil")
tl_message_action_gen.go#L3932: return fmt.Errorf("unable to decode messageActionInviteToGroupCall#76b9f11a: field call: %w", err)
tl_message_action_gen.go#L3938: return fmt.Errorf("unable to decode messageActionInviteToGroupCall#76b9f11a: field users: %w", err)
tl_message_action_gen.go#L3943: return fmt.Errorf("unable to decode messageActionInviteToGroupCall#76b9f11a: field users: %w", err)
tl_message_action_gen.go#L4036: return fmt.Errorf("can't encode messageActionSetMessagesTTL#aa1afbfd as nil")
tl_message_action_gen.go#L4045: return fmt.Errorf("can't encode messageActionSetMessagesTTL#aa1afbfd as nil")
tl_message_action_gen.go#L4059: return fmt.Errorf("can't decode messageActionSetMessagesTTL#aa1afbfd to nil")
tl_message_action_gen.go#L4062: return fmt.Errorf("unable to decode messageActionSetMessagesTTL#aa1afbfd: %w", err)
tl_message_action_gen.go#L4070: return fmt.Errorf("can't decode messageActionSetMessagesTTL#aa1afbfd to nil")
tl_message_action_gen.go#L4075: return fmt.Errorf("unable to decode messageActionSetMessagesTTL#aa1afbfd: field period: %w", err)
tl_message_action_gen.go#L4178: return fmt.Errorf("can't encode messageActionGroupCallScheduled#b3a07661 as nil")
tl_message_action_gen.go#L4187: return fmt.Errorf("can't encode messageActionGroupCallScheduled#b3a07661 as nil")
tl_message_action_gen.go#L4190: return fmt.Errorf("unable to encode messageActionGroupCallScheduled#b3a07661: field call: %w", err)
tl_message_action_gen.go#L4209: return fmt.Errorf("can't decode messageActionGroupCallScheduled#b3a07661 to nil")
tl_message_action_gen.go#L4212: return fmt.Errorf("unable to decode messageActionGroupCallScheduled#b3a07661: %w", err)
tl_message_action_gen.go#L4220: return fmt.Errorf("can't decode messageActionGroupCallScheduled#b3a07661 to nil")
tl_message_action_gen.go#L4224: return fmt.Errorf("unable to decode messageActionGroupCallScheduled#b3a07661: field call: %w", err)
tl_message_action_gen.go#L4230: return fmt.Errorf("unable to decode messageActionGroupCallScheduled#b3a07661: field schedule_date: %w", err)
tl_message_action_gen.go#L4320: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4327: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4334: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4341: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4348: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4355: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4362: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4369: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4376: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4383: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4390: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4397: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4404: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4411: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4418: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4425: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4432: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4439: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4446: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4453: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4460: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4467: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4474: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4481: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4488: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4495: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4502: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4509: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
tl_message_action_gen.go#L4513: return nil, fmt.Errorf("unable to decode MessageActionClass: %w", bin.NewUnexpectedID(id))
tl_message_action_gen.go#L4525: return fmt.Errorf("unable to decode MessageActionBox to nil")
tl_message_action_gen.go#L4529: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_message_action_gen.go#L4538: return fmt.Errorf("unable to encode MessageActionClass as nil")
tl_message_entity_gen.go#L116: return fmt.Errorf("can't encode messageEntityUnknown#bb92ba95 as nil")
tl_message_entity_gen.go#L125: return fmt.Errorf("can't encode messageEntityUnknown#bb92ba95 as nil")
tl_message_entity_gen.go#L145: return fmt.Errorf("can't decode messageEntityUnknown#bb92ba95 to nil")
tl_message_entity_gen.go#L148: return fmt.Errorf("unable to decode messageEntityUnknown#bb92ba95: %w", err)
tl_message_entity_gen.go#L156: return fmt.Errorf("can't decode messageEntityUnknown#bb92ba95 to nil")
tl_message_entity_gen.go#L161: return fmt.Errorf("unable to decode messageEntityUnknown#bb92ba95: field offset: %w", err)
tl_message_entity_gen.go#L168: return fmt.Errorf("unable to decode messageEntityUnknown#bb92ba95: field length: %w", err)
tl_message_entity_gen.go#L275: return fmt.Errorf("can't encode messageEntityMention#fa04579d as nil")
tl_message_entity_gen.go#L284: return fmt.Errorf("can't encode messageEntityMention#fa04579d as nil")
tl_message_entity_gen.go#L304: return fmt.Errorf("can't decode messageEntityMention#fa04579d to nil")
tl_message_entity_gen.go#L307: return fmt.Errorf("unable to decode messageEntityMention#fa04579d: %w", err)
tl_message_entity_gen.go#L315: return fmt.Errorf("can't decode messageEntityMention#fa04579d to nil")
tl_message_entity_gen.go#L320: return fmt.Errorf("unable to decode messageEntityMention#fa04579d: field offset: %w", err)
tl_message_entity_gen.go#L327: return fmt.Errorf("unable to decode messageEntityMention#fa04579d: field length: %w", err)
tl_message_entity_gen.go#L431: return fmt.Errorf("can't encode messageEntityHashtag#6f635b0d as nil")
tl_message_entity_gen.go#L440: return fmt.Errorf("can't encode messageEntityHashtag#6f635b0d as nil")
tl_message_entity_gen.go#L460: return fmt.Errorf("can't decode messageEntityHashtag#6f635b0d to nil")
tl_message_entity_gen.go#L463: return fmt.Errorf("unable to decode messageEntityHashtag#6f635b0d: %w", err)
tl_message_entity_gen.go#L471: return fmt.Errorf("can't decode messageEntityHashtag#6f635b0d to nil")
tl_message_entity_gen.go#L476: return fmt.Errorf("unable to decode messageEntityHashtag#6f635b0d: field offset: %w", err)
tl_message_entity_gen.go#L483: return fmt.Errorf("unable to decode messageEntityHashtag#6f635b0d: field length: %w", err)
tl_message_entity_gen.go#L587: return fmt.Errorf("can't encode messageEntityBotCommand#6cef8ac7 as nil")
tl_message_entity_gen.go#L596: return fmt.Errorf("can't encode messageEntityBotCommand#6cef8ac7 as nil")
tl_message_entity_gen.go#L616: return fmt.Errorf("can't decode messageEntityBotCommand#6cef8ac7 to nil")
tl_message_entity_gen.go#L619: return fmt.Errorf("unable to decode messageEntityBotCommand#6cef8ac7: %w", err)
tl_message_entity_gen.go#L627: return fmt.Errorf("can't decode messageEntityBotCommand#6cef8ac7 to nil")
tl_message_entity_gen.go#L632: return fmt.Errorf("unable to decode messageEntityBotCommand#6cef8ac7: field offset: %w", err)
tl_message_entity_gen.go#L639: return fmt.Errorf("unable to decode messageEntityBotCommand#6cef8ac7: field length: %w", err)
tl_message_entity_gen.go#L749: return fmt.Errorf("can't encode messageEntityUrl#6ed02538 as nil")
tl_message_entity_gen.go#L758: return fmt.Errorf("can't encode messageEntityUrl#6ed02538 as nil")
tl_message_entity_gen.go#L778: return fmt.Errorf("can't decode messageEntityUrl#6ed02538 to nil")
tl_message_entity_gen.go#L781: return fmt.Errorf("unable to decode messageEntityUrl#6ed02538: %w", err)
tl_message_entity_gen.go#L789: return fmt.Errorf("can't decode messageEntityUrl#6ed02538 to nil")
tl_message_entity_gen.go#L794: return fmt.Errorf("unable to decode messageEntityUrl#6ed02538: field offset: %w", err)
tl_message_entity_gen.go#L801: return fmt.Errorf("unable to decode messageEntityUrl#6ed02538: field length: %w", err)
tl_message_entity_gen.go#L908: return fmt.Errorf("can't encode messageEntityEmail#64e475c2 as nil")
tl_message_entity_gen.go#L917: return fmt.Errorf("can't encode messageEntityEmail#64e475c2 as nil")
tl_message_entity_gen.go#L937: return fmt.Errorf("can't decode messageEntityEmail#64e475c2 to nil")
tl_message_entity_gen.go#L940: return fmt.Errorf("unable to decode messageEntityEmail#64e475c2: %w", err)
tl_message_entity_gen.go#L948: return fmt.Errorf("can't decode messageEntityEmail#64e475c2 to nil")
tl_message_entity_gen.go#L953: return fmt.Errorf("unable to decode messageEntityEmail#64e475c2: field offset: %w", err)
tl_message_entity_gen.go#L960: return fmt.Errorf("unable to decode messageEntityEmail#64e475c2: field length: %w", err)
tl_message_entity_gen.go#L1064: return fmt.Errorf("can't encode messageEntityBold#bd610bc9 as nil")
tl_message_entity_gen.go#L1073: return fmt.Errorf("can't encode messageEntityBold#bd610bc9 as nil")
tl_message_entity_gen.go#L1093: return fmt.Errorf("can't decode messageEntityBold#bd610bc9 to nil")
tl_message_entity_gen.go#L1096: return fmt.Errorf("unable to decode messageEntityBold#bd610bc9: %w", err)
tl_message_entity_gen.go#L1104: return fmt.Errorf("can't decode messageEntityBold#bd610bc9 to nil")
tl_message_entity_gen.go#L1109: return fmt.Errorf("unable to decode messageEntityBold#bd610bc9: field offset: %w", err)
tl_message_entity_gen.go#L1116: return fmt.Errorf("unable to decode messageEntityBold#bd610bc9: field length: %w", err)
tl_message_entity_gen.go#L1220: return fmt.Errorf("can't encode messageEntityItalic#826f8b60 as nil")
tl_message_entity_gen.go#L1229: return fmt.Errorf("can't encode messageEntityItalic#826f8b60 as nil")
tl_message_entity_gen.go#L1249: return fmt.Errorf("can't decode messageEntityItalic#826f8b60 to nil")
tl_message_entity_gen.go#L1252: return fmt.Errorf("unable to decode messageEntityItalic#826f8b60: %w", err)
tl_message_entity_gen.go#L1260: return fmt.Errorf("can't decode messageEntityItalic#826f8b60 to nil")
tl_message_entity_gen.go#L1265: return fmt.Errorf("unable to decode messageEntityItalic#826f8b60: field offset: %w", err)
tl_message_entity_gen.go#L1272: return fmt.Errorf("unable to decode messageEntityItalic#826f8b60: field length: %w", err)
tl_message_entity_gen.go#L1376: return fmt.Errorf("can't encode messageEntityCode#28a20571 as nil")
tl_message_entity_gen.go#L1385: return fmt.Errorf("can't encode messageEntityCode#28a20571 as nil")
tl_message_entity_gen.go#L1405: return fmt.Errorf("can't decode messageEntityCode#28a20571 to nil")
tl_message_entity_gen.go#L1408: return fmt.Errorf("unable to decode messageEntityCode#28a20571: %w", err)
tl_message_entity_gen.go#L1416: return fmt.Errorf("can't decode messageEntityCode#28a20571 to nil")
tl_message_entity_gen.go#L1421: return fmt.Errorf("unable to decode messageEntityCode#28a20571: field offset: %w", err)
tl_message_entity_gen.go#L1428: return fmt.Errorf("unable to decode messageEntityCode#28a20571: field length: %w", err)
tl_message_entity_gen.go#L1544: return fmt.Errorf("can't encode messageEntityPre#73924be0 as nil")
tl_message_entity_gen.go#L1553: return fmt.Errorf("can't encode messageEntityPre#73924be0 as nil")
tl_message_entity_gen.go#L1579: return fmt.Errorf("can't decode messageEntityPre#73924be0 to nil")
tl_message_entity_gen.go#L1582: return fmt.Errorf("unable to decode messageEntityPre#73924be0: %w", err)
tl_message_entity_gen.go#L1590: return fmt.Errorf("can't decode messageEntityPre#73924be0 to nil")
tl_message_entity_gen.go#L1595: return fmt.Errorf("unable to decode messageEntityPre#73924be0: field offset: %w", err)
tl_message_entity_gen.go#L1602: return fmt.Errorf("unable to decode messageEntityPre#73924be0: field length: %w", err)
tl_message_entity_gen.go#L1609: return fmt.Errorf("unable to decode messageEntityPre#73924be0: field language: %w", err)
tl_message_entity_gen.go#L1730: return fmt.Errorf("can't encode messageEntityTextUrl#76a6d327 as nil")
tl_message_entity_gen.go#L1739: return fmt.Errorf("can't encode messageEntityTextUrl#76a6d327 as nil")
tl_message_entity_gen.go#L1765: return fmt.Errorf("can't decode messageEntityTextUrl#76a6d327 to nil")
tl_message_entity_gen.go#L1768: return fmt.Errorf("unable to decode messageEntityTextUrl#76a6d327: %w", err)
tl_message_entity_gen.go#L1776: return fmt.Errorf("can't decode messageEntityTextUrl#76a6d327 to nil")
tl_message_entity_gen.go#L1781: return fmt.Errorf("unable to decode messageEntityTextUrl#76a6d327: field offset: %w", err)
tl_message_entity_gen.go#L1788: return fmt.Errorf("unable to decode messageEntityTextUrl#76a6d327: field length: %w", err)
tl_message_entity_gen.go#L1795: return fmt.Errorf("unable to decode messageEntityTextUrl#76a6d327: field url: %w", err)
tl_message_entity_gen.go#L1915: return fmt.Errorf("can't encode messageEntityMentionName#352dca58 as nil")
tl_message_entity_gen.go#L1924: return fmt.Errorf("can't encode messageEntityMentionName#352dca58 as nil")
tl_message_entity_gen.go#L1950: return fmt.Errorf("can't decode messageEntityMentionName#352dca58 to nil")
tl_message_entity_gen.go#L1953: return fmt.Errorf("unable to decode messageEntityMentionName#352dca58: %w", err)
tl_message_entity_gen.go#L1961: return fmt.Errorf("can't decode messageEntityMentionName#352dca58 to nil")
tl_message_entity_gen.go#L1966: return fmt.Errorf("unable to decode messageEntityMentionName#352dca58: field offset: %w", err)
tl_message_entity_gen.go#L1973: return fmt.Errorf("unable to decode messageEntityMentionName#352dca58: field length: %w", err)
tl_message_entity_gen.go#L1980: return fmt.Errorf("unable to decode messageEntityMentionName#352dca58: field user_id: %w", err)
tl_message_entity_gen.go#L2100: return fmt.Errorf("can't encode inputMessageEntityMentionName#208e68c9 as nil")
tl_message_entity_gen.go#L2109: return fmt.Errorf("can't encode inputMessageEntityMentionName#208e68c9 as nil")
tl_message_entity_gen.go#L2114: return fmt.Errorf("unable to encode inputMessageEntityMentionName#208e68c9: field user_id is nil")
tl_message_entity_gen.go#L2117: return fmt.Errorf("unable to encode inputMessageEntityMentionName#208e68c9: field user_id: %w", err)
tl_message_entity_gen.go#L2140: return fmt.Errorf("can't decode inputMessageEntityMentionName#208e68c9 to nil")
tl_message_entity_gen.go#L2143: return fmt.Errorf("unable to decode inputMessageEntityMentionName#208e68c9: %w", err)
tl_message_entity_gen.go#L2151: return fmt.Errorf("can't decode inputMessageEntityMentionName#208e68c9 to nil")
tl_message_entity_gen.go#L2156: return fmt.Errorf("unable to decode inputMessageEntityMentionName#208e68c9: field offset: %w", err)
tl_message_entity_gen.go#L2163: return fmt.Errorf("unable to decode inputMessageEntityMentionName#208e68c9: field length: %w", err)
tl_message_entity_gen.go#L2170: return fmt.Errorf("unable to decode inputMessageEntityMentionName#208e68c9: field user_id: %w", err)
tl_message_entity_gen.go#L2274: return fmt.Errorf("can't encode messageEntityPhone#9b69e34b as nil")
tl_message_entity_gen.go#L2283: return fmt.Errorf("can't encode messageEntityPhone#9b69e34b as nil")
tl_message_entity_gen.go#L2303: return fmt.Errorf("can't decode messageEntityPhone#9b69e34b to nil")
tl_message_entity_gen.go#L2306: return fmt.Errorf("unable to decode messageEntityPhone#9b69e34b: %w", err)
tl_message_entity_gen.go#L2314: return fmt.Errorf("can't decode messageEntityPhone#9b69e34b to nil")
tl_message_entity_gen.go#L2319: return fmt.Errorf("unable to decode messageEntityPhone#9b69e34b: field offset: %w", err)
tl_message_entity_gen.go#L2326: return fmt.Errorf("unable to decode messageEntityPhone#9b69e34b: field length: %w", err)
tl_message_entity_gen.go#L2430: return fmt.Errorf("can't encode messageEntityCashtag#4c4e743f as nil")
tl_message_entity_gen.go#L2439: return fmt.Errorf("can't encode messageEntityCashtag#4c4e743f as nil")
tl_message_entity_gen.go#L2459: return fmt.Errorf("can't decode messageEntityCashtag#4c4e743f to nil")
tl_message_entity_gen.go#L2462: return fmt.Errorf("unable to decode messageEntityCashtag#4c4e743f: %w", err)
tl_message_entity_gen.go#L2470: return fmt.Errorf("can't decode messageEntityCashtag#4c4e743f to nil")
tl_message_entity_gen.go#L2475: return fmt.Errorf("unable to decode messageEntityCashtag#4c4e743f: field offset: %w", err)
tl_message_entity_gen.go#L2482: return fmt.Errorf("unable to decode messageEntityCashtag#4c4e743f: field length: %w", err)
tl_message_entity_gen.go#L2586: return fmt.Errorf("can't encode messageEntityUnderline#9c4e7e8b as nil")
tl_message_entity_gen.go#L2595: return fmt.Errorf("can't encode messageEntityUnderline#9c4e7e8b as nil")
tl_message_entity_gen.go#L2615: return fmt.Errorf("can't decode messageEntityUnderline#9c4e7e8b to nil")
tl_message_entity_gen.go#L2618: return fmt.Errorf("unable to decode messageEntityUnderline#9c4e7e8b: %w", err)
tl_message_entity_gen.go#L2626: return fmt.Errorf("can't decode messageEntityUnderline#9c4e7e8b to nil")
tl_message_entity_gen.go#L2631: return fmt.Errorf("unable to decode messageEntityUnderline#9c4e7e8b: field offset: %w", err)
tl_message_entity_gen.go#L2638: return fmt.Errorf("unable to decode messageEntityUnderline#9c4e7e8b: field length: %w", err)
tl_message_entity_gen.go#L2742: return fmt.Errorf("can't encode messageEntityStrike#bf0693d4 as nil")
tl_message_entity_gen.go#L2751: return fmt.Errorf("can't encode messageEntityStrike#bf0693d4 as nil")
tl_message_entity_gen.go#L2771: return fmt.Errorf("can't decode messageEntityStrike#bf0693d4 to nil")
tl_message_entity_gen.go#L2774: return fmt.Errorf("unable to decode messageEntityStrike#bf0693d4: %w", err)
tl_message_entity_gen.go#L2782: return fmt.Errorf("can't decode messageEntityStrike#bf0693d4 to nil")
tl_message_entity_gen.go#L2787: return fmt.Errorf("unable to decode messageEntityStrike#bf0693d4: field offset: %w", err)
tl_message_entity_gen.go#L2794: return fmt.Errorf("unable to decode messageEntityStrike#bf0693d4: field length: %w", err)
tl_message_entity_gen.go#L2898: return fmt.Errorf("can't encode messageEntityBlockquote#20df5d0 as nil")
tl_message_entity_gen.go#L2907: return fmt.Errorf("can't encode messageEntityBlockquote#20df5d0 as nil")
tl_message_entity_gen.go#L2927: return fmt.Errorf("can't decode messageEntityBlockquote#20df5d0 to nil")
tl_message_entity_gen.go#L2930: return fmt.Errorf("unable to decode messageEntityBlockquote#20df5d0: %w", err)
tl_message_entity_gen.go#L2938: return fmt.Errorf("can't decode messageEntityBlockquote#20df5d0 to nil")
tl_message_entity_gen.go#L2943: return fmt.Errorf("unable to decode messageEntityBlockquote#20df5d0: field offset: %w", err)
tl_message_entity_gen.go#L2950: return fmt.Errorf("unable to decode messageEntityBlockquote#20df5d0: field length: %w", err)
tl_message_entity_gen.go#L3054: return fmt.Errorf("can't encode messageEntityBankCard#761e6af4 as nil")
tl_message_entity_gen.go#L3063: return fmt.Errorf("can't encode messageEntityBankCard#761e6af4 as nil")
tl_message_entity_gen.go#L3083: return fmt.Errorf("can't decode messageEntityBankCard#761e6af4 to nil")
tl_message_entity_gen.go#L3086: return fmt.Errorf("unable to decode messageEntityBankCard#761e6af4: %w", err)
tl_message_entity_gen.go#L3094: return fmt.Errorf("can't decode messageEntityBankCard#761e6af4 to nil")
tl_message_entity_gen.go#L3099: return fmt.Errorf("unable to decode messageEntityBankCard#761e6af4: field offset: %w", err)
tl_message_entity_gen.go#L3106: return fmt.Errorf("unable to decode messageEntityBankCard#761e6af4: field length: %w", err)
tl_message_entity_gen.go#L3193: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3200: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3207: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3214: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3221: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3228: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3235: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3242: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3249: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3256: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3263: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3270: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3277: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3284: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3291: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3298: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3305: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3312: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3319: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
tl_message_entity_gen.go#L3323: return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", bin.NewUnexpectedID(id))
tl_message_entity_gen.go#L3335: return fmt.Errorf("unable to decode MessageEntityBox to nil")
tl_message_entity_gen.go#L3339: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_message_entity_gen.go#L3348: return fmt.Errorf("unable to encode MessageEntityClass as nil")
tl_message_fwd_header_gen.go#L246: return fmt.Errorf("can't encode messageFwdHeader#5f777dce as nil")
tl_message_fwd_header_gen.go#L255: return fmt.Errorf("can't encode messageFwdHeader#5f777dce as nil")
tl_message_fwd_header_gen.go#L282: return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field flags: %w", err)
tl_message_fwd_header_gen.go#L286: return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field from_id is nil")
tl_message_fwd_header_gen.go#L289: return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field from_id: %w", err)
tl_message_fwd_header_gen.go#L304: return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field saved_from_peer is nil")
tl_message_fwd_header_gen.go#L307: return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field saved_from_peer: %w", err)
tl_message_fwd_header_gen.go#L448: return fmt.Errorf("can't decode messageFwdHeader#5f777dce to nil")
tl_message_fwd_header_gen.go#L451: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: %w", err)
tl_message_fwd_header_gen.go#L459: return fmt.Errorf("can't decode messageFwdHeader#5f777dce to nil")
tl_message_fwd_header_gen.go#L463: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field flags: %w", err)
tl_message_fwd_header_gen.go#L470: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field from_id: %w", err)
tl_message_fwd_header_gen.go#L477: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field from_name: %w", err)
tl_message_fwd_header_gen.go#L484: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field date: %w", err)
tl_message_fwd_header_gen.go#L491: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field channel_post: %w", err)
tl_message_fwd_header_gen.go#L498: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field post_author: %w", err)
tl_message_fwd_header_gen.go#L505: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field saved_from_peer: %w", err)
tl_message_fwd_header_gen.go#L512: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field saved_from_msg_id: %w", err)
tl_message_fwd_header_gen.go#L519: return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field psa_type: %w", err)
tl_message_gen.go#L127: return fmt.Errorf("can't encode messageEmpty#90a6ca84 as nil")
tl_message_gen.go#L136: return fmt.Errorf("can't encode messageEmpty#90a6ca84 as nil")
tl_message_gen.go#L142: return fmt.Errorf("unable to encode messageEmpty#90a6ca84: field flags: %w", err)
tl_message_gen.go#L147: return fmt.Errorf("unable to encode messageEmpty#90a6ca84: field peer_id is nil")
tl_message_gen.go#L150: return fmt.Errorf("unable to encode messageEmpty#90a6ca84: field peer_id: %w", err)
tl_message_gen.go#L179: return fmt.Errorf("can't decode messageEmpty#90a6ca84 to nil")
tl_message_gen.go#L182: return fmt.Errorf("unable to decode messageEmpty#90a6ca84: %w", err)
tl_message_gen.go#L190: return fmt.Errorf("can't decode messageEmpty#90a6ca84 to nil")
tl_message_gen.go#L194: return fmt.Errorf("unable to decode messageEmpty#90a6ca84: field flags: %w", err)
tl_message_gen.go#L200: return fmt.Errorf("unable to decode messageEmpty#90a6ca84: field id: %w", err)
tl_message_gen.go#L207: return fmt.Errorf("unable to decode messageEmpty#90a6ca84: field peer_id: %w", err)
tl_message_gen.go#L725: return fmt.Errorf("can't encode message#bce383d2 as nil")
tl_message_gen.go#L734: return fmt.Errorf("can't encode message#bce383d2 as nil")
tl_message_gen.go#L809: return fmt.Errorf("unable to encode message#bce383d2: field flags: %w", err)
tl_message_gen.go#L814: return fmt.Errorf("unable to encode message#bce383d2: field from_id is nil")
tl_message_gen.go#L817: return fmt.Errorf("unable to encode message#bce383d2: field from_id: %w", err)
tl_message_gen.go#L821: return fmt.Errorf("unable to encode message#bce383d2: field peer_id is nil")
tl_message_gen.go#L824: return fmt.Errorf("unable to encode message#bce383d2: field peer_id: %w", err)
tl_message_gen.go#L828: return fmt.Errorf("unable to encode message#bce383d2: field fwd_from: %w", err)
tl_message_gen.go#L836: return fmt.Errorf("unable to encode message#bce383d2: field reply_to: %w", err)
tl_message_gen.go#L843: return fmt.Errorf("unable to encode message#bce383d2: field media is nil")
tl_message_gen.go#L846: return fmt.Errorf("unable to encode message#bce383d2: field media: %w", err)
tl_message_gen.go#L851: return fmt.Errorf("unable to encode message#bce383d2: field reply_markup is nil")
tl_message_gen.go#L854: return fmt.Errorf("unable to encode message#bce383d2: field reply_markup: %w", err)
tl_message_gen.go#L861: return fmt.Errorf("unable to encode message#bce383d2: field entities element with index %d is nil", idx)
tl_message_gen.go#L864: return fmt.Errorf("unable to encode message#bce383d2: field entities element with index %d: %w", idx, err)
tl_message_gen.go#L876: return fmt.Errorf("unable to encode message#bce383d2: field replies: %w", err)
tl_message_gen.go#L892: return fmt.Errorf("unable to encode message#bce383d2: field restriction_reason element with index %d: %w", idx, err)
tl_message_gen.go#L1302: return fmt.Errorf("can't decode message#bce383d2 to nil")
tl_message_gen.go#L1305: return fmt.Errorf("unable to decode message#bce383d2: %w", err)
tl_message_gen.go#L1313: return fmt.Errorf("can't decode message#bce383d2 to nil")
tl_message_gen.go#L1317: return fmt.Errorf("unable to decode message#bce383d2: field flags: %w", err)
tl_message_gen.go#L1332: return fmt.Errorf("unable to decode message#bce383d2: field id: %w", err)
tl_message_gen.go#L1339: return fmt.Errorf("unable to decode message#bce383d2: field from_id: %w", err)
tl_message_gen.go#L1346: return fmt.Errorf("unable to decode message#bce383d2: field peer_id: %w", err)
tl_message_gen.go#L1352: return fmt.Errorf("unable to decode message#bce383d2: field fwd_from: %w", err)
tl_message_gen.go#L1358: return fmt.Errorf("unable to decode message#bce383d2: field via_bot_id: %w", err)
tl_message_gen.go#L1364: return fmt.Errorf("unable to decode message#bce383d2: field reply_to: %w", err)
tl_message_gen.go#L1370: return fmt.Errorf("unable to decode message#bce383d2: field date: %w", err)
tl_message_gen.go#L1377: return fmt.Errorf("unable to decode message#bce383d2: field message: %w", err)
tl_message_gen.go#L1384: return fmt.Errorf("unable to decode message#bce383d2: field media: %w", err)
tl_message_gen.go#L1391: return fmt.Errorf("unable to decode message#bce383d2: field reply_markup: %w", err)
tl_message_gen.go#L1398: return fmt.Errorf("unable to decode message#bce383d2: field entities: %w", err)
tl_message_gen.go#L1403: return fmt.Errorf("unable to decode message#bce383d2: field entities: %w", err)
tl_message_gen.go#L1411: return fmt.Errorf("unable to decode message#bce383d2: field views: %w", err)
tl_message_gen.go#L1418: return fmt.Errorf("unable to decode message#bce383d2: field forwards: %w", err)
tl_message_gen.go#L1424: return fmt.Errorf("unable to decode message#bce383d2: field replies: %w", err)
tl_message_gen.go#L1430: return fmt.Errorf("unable to decode message#bce383d2: field edit_date: %w", err)
tl_message_gen.go#L1437: return fmt.Errorf("unable to decode message#bce383d2: field post_author: %w", err)
tl_message_gen.go#L1444: return fmt.Errorf("unable to decode message#bce383d2: field grouped_id: %w", err)
tl_message_gen.go#L1451: return fmt.Errorf("unable to decode message#bce383d2: field restriction_reason: %w", err)
tl_message_gen.go#L1456: return fmt.Errorf("unable to decode message#bce383d2: field restriction_reason: %w", err)
tl_message_gen.go#L1464: return fmt.Errorf("unable to decode message#bce383d2: field ttl_period: %w", err)
tl_message_gen.go#L1721: return fmt.Errorf("can't encode messageService#2b085862 as nil")
tl_message_gen.go#L1730: return fmt.Errorf("can't encode messageService#2b085862 as nil")
tl_message_gen.go#L1760: return fmt.Errorf("unable to encode messageService#2b085862: field flags: %w", err)
tl_message_gen.go#L1765: return fmt.Errorf("unable to encode messageService#2b085862: field from_id is nil")
tl_message_gen.go#L1768: return fmt.Errorf("unable to encode messageService#2b085862: field from_id: %w", err)
tl_message_gen.go#L1772: return fmt.Errorf("unable to encode messageService#2b085862: field peer_id is nil")
tl_message_gen.go#L1775: return fmt.Errorf("unable to encode messageService#2b085862: field peer_id: %w", err)
tl_message_gen.go#L1779: return fmt.Errorf("unable to encode messageService#2b085862: field reply_to: %w", err)
tl_message_gen.go#L1784: return fmt.Errorf("unable to encode messageService#2b085862: field action is nil")
tl_message_gen.go#L1787: return fmt.Errorf("unable to encode messageService#2b085862: field action: %w", err)
tl_message_gen.go#L1959: return fmt.Errorf("can't decode messageService#2b085862 to nil")
tl_message_gen.go#L1962: return fmt.Errorf("unable to decode messageService#2b085862: %w", err)
tl_message_gen.go#L1970: return fmt.Errorf("can't decode messageService#2b085862 to nil")
tl_message_gen.go#L1974: return fmt.Errorf("unable to decode messageService#2b085862: field flags: %w", err)
tl_message_gen.go#L1986: return fmt.Errorf("unable to decode messageService#2b085862: field id: %w", err)
tl_message_gen.go#L1993: return fmt.Errorf("unable to decode messageService#2b085862: field from_id: %w", err)
tl_message_gen.go#L2000: return fmt.Errorf("unable to decode messageService#2b085862: field peer_id: %w", err)
tl_message_gen.go#L2006: return fmt.Errorf("unable to decode messageService#2b085862: field reply_to: %w", err)
tl_message_gen.go#L2012: return fmt.Errorf("unable to decode messageService#2b085862: field date: %w", err)
tl_message_gen.go#L2019: return fmt.Errorf("unable to decode messageService#2b085862: field action: %w", err)
tl_message_gen.go#L2026: return fmt.Errorf("unable to decode messageService#2b085862: field ttl_period: %w", err)
tl_message_gen.go#L2190: return nil, fmt.Errorf("unable to decode MessageClass: %w", err)
tl_message_gen.go#L2197: return nil, fmt.Errorf("unable to decode MessageClass: %w", err)
tl_message_gen.go#L2204: return nil, fmt.Errorf("unable to decode MessageClass: %w", err)
tl_message_gen.go#L2208: return nil, fmt.Errorf("unable to decode MessageClass: %w", bin.NewUnexpectedID(id))
tl_message_gen.go#L2220: return fmt.Errorf("unable to decode MessageBox to nil")
tl_message_gen.go#L2224: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_message_gen.go#L2233: return fmt.Errorf("unable to encode MessageClass as nil")
tl_message_interaction_counters_gen.go#L127: return fmt.Errorf("can't encode messageInteractionCounters#ad4fc9bd as nil")
tl_message_interaction_counters_gen.go#L136: return fmt.Errorf("can't encode messageInteractionCounters#ad4fc9bd as nil")
tl_message_interaction_counters_gen.go#L162: return fmt.Errorf("can't decode messageInteractionCounters#ad4fc9bd to nil")
tl_message_interaction_counters_gen.go#L165: return fmt.Errorf("unable to decode messageInteractionCounters#ad4fc9bd: %w", err)
tl_message_interaction_counters_gen.go#L173: return fmt.Errorf("can't decode messageInteractionCounters#ad4fc9bd to nil")
tl_message_interaction_counters_gen.go#L178: return fmt.Errorf("unable to decode messageInteractionCounters#ad4fc9bd: field msg_id: %w", err)
tl_message_interaction_counters_gen.go#L185: return fmt.Errorf("unable to decode messageInteractionCounters#ad4fc9bd: field views: %w", err)
tl_message_interaction_counters_gen.go#L192: return fmt.Errorf("unable to decode messageInteractionCounters#ad4fc9bd: field forwards: %w", err)
tl_message_media_gen.go#L88: return fmt.Errorf("can't encode messageMediaEmpty#3ded6320 as nil")
tl_message_media_gen.go#L97: return fmt.Errorf("can't encode messageMediaEmpty#3ded6320 as nil")
tl_message_media_gen.go#L105: return fmt.Errorf("can't decode messageMediaEmpty#3ded6320 to nil")
tl_message_media_gen.go#L108: return fmt.Errorf("unable to decode messageMediaEmpty#3ded6320: %w", err)
tl_message_media_gen.go#L116: return fmt.Errorf("can't decode messageMediaEmpty#3ded6320 to nil")
tl_message_media_gen.go#L238: return fmt.Errorf("can't encode messageMediaPhoto#695150d7 as nil")
tl_message_media_gen.go#L247: return fmt.Errorf("can't encode messageMediaPhoto#695150d7 as nil")
tl_message_media_gen.go#L256: return fmt.Errorf("unable to encode messageMediaPhoto#695150d7: field flags: %w", err)
tl_message_media_gen.go#L260: return fmt.Errorf("unable to encode messageMediaPhoto#695150d7: field photo is nil")
tl_message_media_gen.go#L263: return fmt.Errorf("unable to encode messageMediaPhoto#695150d7: field photo: %w", err)
tl_message_media_gen.go#L305: return fmt.Errorf("can't decode messageMediaPhoto#695150d7 to nil")
tl_message_media_gen.go#L308: return fmt.Errorf("unable to decode messageMediaPhoto#695150d7: %w", err)
tl_message_media_gen.go#L316: return fmt.Errorf("can't decode messageMediaPhoto#695150d7 to nil")
tl_message_media_gen.go#L320: return fmt.Errorf("unable to decode messageMediaPhoto#695150d7: field flags: %w", err)
tl_message_media_gen.go#L326: return fmt.Errorf("unable to decode messageMediaPhoto#695150d7: field photo: %w", err)
tl_message_media_gen.go#L333: return fmt.Errorf("unable to decode messageMediaPhoto#695150d7: field ttl_seconds: %w", err)
tl_message_media_gen.go#L426: return fmt.Errorf("can't encode messageMediaGeo#56e0d474 as nil")
tl_message_media_gen.go#L435: return fmt.Errorf("can't encode messageMediaGeo#56e0d474 as nil")
tl_message_media_gen.go#L438: return fmt.Errorf("unable to encode messageMediaGeo#56e0d474: field geo is nil")
tl_message_media_gen.go#L441: return fmt.Errorf("unable to encode messageMediaGeo#56e0d474: field geo: %w", err)
tl_message_media_gen.go#L454: return fmt.Errorf("can't decode messageMediaGeo#56e0d474 to nil")
tl_message_media_gen.go#L457: return fmt.Errorf("unable to decode messageMediaGeo#56e0d474: %w", err)
tl_message_media_gen.go#L465: return fmt.Errorf("can't decode messageMediaGeo#56e0d474 to nil")
tl_message_media_gen.go#L470: return fmt.Errorf("unable to decode messageMediaGeo#56e0d474: field geo: %w", err)
tl_message_media_gen.go#L607: return fmt.Errorf("can't encode messageMediaContact#cbf24940 as nil")
tl_message_media_gen.go#L616: return fmt.Errorf("can't encode messageMediaContact#cbf24940 as nil")
tl_message_media_gen.go#L654: return fmt.Errorf("can't decode messageMediaContact#cbf24940 to nil")
tl_message_media_gen.go#L657: return fmt.Errorf("unable to decode messageMediaContact#cbf24940: %w", err)
tl_message_media_gen.go#L665: return fmt.Errorf("can't decode messageMediaContact#cbf24940 to nil")
tl_message_media_gen.go#L670: return fmt.Errorf("unable to decode messageMediaContact#cbf24940: field phone_number: %w", err)
tl_message_media_gen.go#L677: return fmt.Errorf("unable to decode messageMediaContact#cbf24940: field first_name: %w", err)
tl_message_media_gen.go#L684: return fmt.Errorf("unable to decode messageMediaContact#cbf24940: field last_name: %w", err)
tl_message_media_gen.go#L691: return fmt.Errorf("unable to decode messageMediaContact#cbf24940: field vcard: %w", err)
tl_message_media_gen.go#L698: return fmt.Errorf("unable to decode messageMediaContact#cbf24940: field user_id: %w", err)
tl_message_media_gen.go#L774: return fmt.Errorf("can't encode messageMediaUnsupported#9f84f49e as nil")
tl_message_media_gen.go#L783: return fmt.Errorf("can't encode messageMediaUnsupported#9f84f49e as nil")
tl_message_media_gen.go#L791: return fmt.Errorf("can't decode messageMediaUnsupported#9f84f49e to nil")
tl_message_media_gen.go#L794: return fmt.Errorf("unable to decode messageMediaUnsupported#9f84f49e: %w", err)
tl_message_media_gen.go#L802: return fmt.Errorf("can't decode messageMediaUnsupported#9f84f49e to nil")
tl_message_media_gen.go#L924: return fmt.Errorf("can't encode messageMediaDocument#9cb070d7 as nil")
tl_message_media_gen.go#L933: return fmt.Errorf("can't encode messageMediaDocument#9cb070d7 as nil")
tl_message_media_gen.go#L942: return fmt.Errorf("unable to encode messageMediaDocument#9cb070d7: field flags: %w", err)
tl_message_media_gen.go#L946: return fmt.Errorf("unable to encode messageMediaDocument#9cb070d7: field document is nil")
tl_message_media_gen.go#L949: return fmt.Errorf("unable to encode messageMediaDocument#9cb070d7: field document: %w", err)
tl_message_media_gen.go#L991: return fmt.Errorf("can't decode messageMediaDocument#9cb070d7 to nil")
tl_message_media_gen.go#L994: return fmt.Errorf("unable to decode messageMediaDocument#9cb070d7: %w", err)
tl_message_media_gen.go#L1002: return fmt.Errorf("can't decode messageMediaDocument#9cb070d7 to nil")
tl_message_media_gen.go#L1006: return fmt.Errorf("unable to decode messageMediaDocument#9cb070d7: field flags: %w", err)
tl_message_media_gen.go#L1012: return fmt.Errorf("unable to decode messageMediaDocument#9cb070d7: field document: %w", err)
tl_message_media_gen.go#L1019: return fmt.Errorf("unable to decode messageMediaDocument#9cb070d7: field ttl_seconds: %w", err)
tl_message_media_gen.go#L1112: return fmt.Errorf("can't encode messageMediaWebPage#a32dd600 as nil")
tl_message_media_gen.go#L1121: return fmt.Errorf("can't encode messageMediaWebPage#a32dd600 as nil")
tl_message_media_gen.go#L1124: return fmt.Errorf("unable to encode messageMediaWebPage#a32dd600: field webpage is nil")
tl_message_media_gen.go#L1127: return fmt.Errorf("unable to encode messageMediaWebPage#a32dd600: field webpage: %w", err)
tl_message_media_gen.go#L1140: return fmt.Errorf("can't decode messageMediaWebPage#a32dd600 to nil")
tl_message_media_gen.go#L1143: return fmt.Errorf("unable to decode messageMediaWebPage#a32dd600: %w", err)
tl_message_media_gen.go#L1151: return fmt.Errorf("can't decode messageMediaWebPage#a32dd600 to nil")
tl_message_media_gen.go#L1156: return fmt.Errorf("unable to decode messageMediaWebPage#a32dd600: field webpage: %w", err)
tl_message_media_gen.go#L1304: return fmt.Errorf("can't encode messageMediaVenue#2ec0533f as nil")
tl_message_media_gen.go#L1313: return fmt.Errorf("can't encode messageMediaVenue#2ec0533f as nil")
tl_message_media_gen.go#L1316: return fmt.Errorf("unable to encode messageMediaVenue#2ec0533f: field geo is nil")
tl_message_media_gen.go#L1319: return fmt.Errorf("unable to encode messageMediaVenue#2ec0533f: field geo: %w", err)
tl_message_media_gen.go#L1362: return fmt.Errorf("can't decode messageMediaVenue#2ec0533f to nil")
tl_message_media_gen.go#L1365: return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: %w", err)
tl_message_media_gen.go#L1373: return fmt.Errorf("can't decode messageMediaVenue#2ec0533f to nil")
tl_message_media_gen.go#L1378: return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field geo: %w", err)
tl_message_media_gen.go#L1385: return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field title: %w", err)
tl_message_media_gen.go#L1392: return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field address: %w", err)
tl_message_media_gen.go#L1399: return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field provider: %w", err)
tl_message_media_gen.go#L1406: return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field venue_id: %w", err)
tl_message_media_gen.go#L1413: return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field venue_type: %w", err)
tl_message_media_gen.go#L1506: return fmt.Errorf("can't encode messageMediaGame#fdb19008 as nil")
tl_message_media_gen.go#L1515: return fmt.Errorf("can't encode messageMediaGame#fdb19008 as nil")
tl_message_media_gen.go#L1518: return fmt.Errorf("unable to encode messageMediaGame#fdb19008: field game: %w", err)
tl_message_media_gen.go#L1531: return fmt.Errorf("can't decode messageMediaGame#fdb19008 to nil")
tl_message_media_gen.go#L1534: return fmt.Errorf("unable to decode messageMediaGame#fdb19008: %w", err)
tl_message_media_gen.go#L1542: return fmt.Errorf("can't decode messageMediaGame#fdb19008 to nil")
tl_message_media_gen.go#L1546: return fmt.Errorf("unable to decode messageMediaGame#fdb19008: field game: %w", err)
tl_message_media_gen.go#L1764: return fmt.Errorf("can't encode messageMediaInvoice#84551347 as nil")
tl_message_media_gen.go#L1773: return fmt.Errorf("can't encode messageMediaInvoice#84551347 as nil")
tl_message_media_gen.go#L1788: return fmt.Errorf("unable to encode messageMediaInvoice#84551347: field flags: %w", err)
tl_message_media_gen.go#L1794: return fmt.Errorf("unable to encode messageMediaInvoice#84551347: field photo is nil")
tl_message_media_gen.go#L1797: return fmt.Errorf("unable to encode messageMediaInvoice#84551347: field photo: %w", err)
tl_message_media_gen.go#L1899: return fmt.Errorf("can't decode messageMediaInvoice#84551347 to nil")
tl_message_media_gen.go#L1902: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: %w", err)
tl_message_media_gen.go#L1910: return fmt.Errorf("can't decode messageMediaInvoice#84551347 to nil")
tl_message_media_gen.go#L1914: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: field flags: %w", err)
tl_message_media_gen.go#L1922: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: field title: %w", err)
tl_message_media_gen.go#L1929: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: field description: %w", err)
tl_message_media_gen.go#L1936: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: field photo: %w", err)
tl_message_media_gen.go#L1943: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: field receipt_msg_id: %w", err)
tl_message_media_gen.go#L1950: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: field currency: %w", err)
tl_message_media_gen.go#L1957: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: field total_amount: %w", err)
tl_message_media_gen.go#L1964: return fmt.Errorf("unable to decode messageMediaInvoice#84551347: field start_param: %w", err)
tl_message_media_gen.go#L2120: return fmt.Errorf("can't encode messageMediaGeoLive#b940c666 as nil")
tl_message_media_gen.go#L2129: return fmt.Errorf("can't encode messageMediaGeoLive#b940c666 as nil")
tl_message_media_gen.go#L2138: return fmt.Errorf("unable to encode messageMediaGeoLive#b940c666: field flags: %w", err)
tl_message_media_gen.go#L2141: return fmt.Errorf("unable to encode messageMediaGeoLive#b940c666: field geo is nil")
tl_message_media_gen.go#L2144: return fmt.Errorf("unable to encode messageMediaGeoLive#b940c666: field geo: %w", err)
tl_message_media_gen.go#L2199: return fmt.Errorf("can't decode messageMediaGeoLive#b940c666 to nil")
tl_message_media_gen.go#L2202: return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: %w", err)
tl_message_media_gen.go#L2210: return fmt.Errorf("can't decode messageMediaGeoLive#b940c666 to nil")
tl_message_media_gen.go#L2214: return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field flags: %w", err)
tl_message_media_gen.go#L2220: return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field geo: %w", err)
tl_message_media_gen.go#L2227: return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field heading: %w", err)
tl_message_media_gen.go#L2234: return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field period: %w", err)
tl_message_media_gen.go#L2241: return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field proximity_notification_radius: %w", err)
tl_message_media_gen.go#L2345: return fmt.Errorf("can't encode messageMediaPoll#4bd6e798 as nil")
tl_message_media_gen.go#L2354: return fmt.Errorf("can't encode messageMediaPoll#4bd6e798 as nil")
tl_message_media_gen.go#L2357: return fmt.Errorf("unable to encode messageMediaPoll#4bd6e798: field poll: %w", err)
tl_message_media_gen.go#L2360: return fmt.Errorf("unable to encode messageMediaPoll#4bd6e798: field results: %w", err)
tl_message_media_gen.go#L2378: return fmt.Errorf("can't decode messageMediaPoll#4bd6e798 to nil")
tl_message_media_gen.go#L2381: return fmt.Errorf("unable to decode messageMediaPoll#4bd6e798: %w", err)
tl_message_media_gen.go#L2389: return fmt.Errorf("can't decode messageMediaPoll#4bd6e798 to nil")
tl_message_media_gen.go#L2393: return fmt.Errorf("unable to decode messageMediaPoll#4bd6e798: field poll: %w", err)
tl_message_media_gen.go#L2398: return fmt.Errorf("unable to decode messageMediaPoll#4bd6e798: field results: %w", err)
tl_message_media_gen.go#L2507: return fmt.Errorf("can't encode messageMediaDice#3f7ee58b as nil")
tl_message_media_gen.go#L2516: return fmt.Errorf("can't encode messageMediaDice#3f7ee58b as nil")
tl_message_media_gen.go#L2536: return fmt.Errorf("can't decode messageMediaDice#3f7ee58b to nil")
tl_message_media_gen.go#L2539: return fmt.Errorf("unable to decode messageMediaDice#3f7ee58b: %w", err)
tl_message_media_gen.go#L2547: return fmt.Errorf("can't decode messageMediaDice#3f7ee58b to nil")
tl_message_media_gen.go#L2552: return fmt.Errorf("unable to decode messageMediaDice#3f7ee58b: field value: %w", err)
tl_message_media_gen.go#L2559: return fmt.Errorf("unable to decode messageMediaDice#3f7ee58b: field emoticon: %w", err)
tl_message_media_gen.go#L2634: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2641: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2648: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2655: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2662: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2669: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2676: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2683: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2690: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2697: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2704: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2711: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2718: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
tl_message_media_gen.go#L2722: return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", bin.NewUnexpectedID(id))
tl_message_media_gen.go#L2734: return fmt.Errorf("unable to decode MessageMediaBox to nil")
tl_message_media_gen.go#L2738: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_message_media_gen.go#L2747: return fmt.Errorf("unable to encode MessageMediaClass as nil")
tl_message_range_gen.go#L116: return fmt.Errorf("can't encode messageRange#ae30253 as nil")
tl_message_range_gen.go#L125: return fmt.Errorf("can't encode messageRange#ae30253 as nil")
tl_message_range_gen.go#L145: return fmt.Errorf("can't decode messageRange#ae30253 to nil")
tl_message_range_gen.go#L148: return fmt.Errorf("unable to decode messageRange#ae30253: %w", err)
tl_message_range_gen.go#L156: return fmt.Errorf("can't decode messageRange#ae30253 to nil")
tl_message_range_gen.go#L161: return fmt.Errorf("unable to decode messageRange#ae30253: field min_id: %w", err)
tl_message_range_gen.go#L168: return fmt.Errorf("unable to decode messageRange#ae30253: field max_id: %w", err)
tl_message_range_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_message_range_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_message_range_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_message_range_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_message_range_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_message_range_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_message_range_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_message_replies_gen.go#L219: return fmt.Errorf("can't encode messageReplies#4128faac as nil")
tl_message_replies_gen.go#L228: return fmt.Errorf("can't encode messageReplies#4128faac as nil")
tl_message_replies_gen.go#L246: return fmt.Errorf("unable to encode messageReplies#4128faac: field flags: %w", err)
tl_message_replies_gen.go#L254: return fmt.Errorf("unable to encode messageReplies#4128faac: field recent_repliers element with index %d is nil", idx)
tl_message_replies_gen.go#L257: return fmt.Errorf("unable to encode messageReplies#4128faac: field recent_repliers element with index %d: %w", idx, err)
tl_message_replies_gen.go#L370: return fmt.Errorf("can't decode messageReplies#4128faac to nil")
tl_message_replies_gen.go#L373: return fmt.Errorf("unable to decode messageReplies#4128faac: %w", err)
tl_message_replies_gen.go#L381: return fmt.Errorf("can't decode messageReplies#4128faac to nil")
tl_message_replies_gen.go#L385: return fmt.Errorf("unable to decode messageReplies#4128faac: field flags: %w", err)
tl_message_replies_gen.go#L392: return fmt.Errorf("unable to decode messageReplies#4128faac: field replies: %w", err)
tl_message_replies_gen.go#L399: return fmt.Errorf("unable to decode messageReplies#4128faac: field replies_pts: %w", err)
tl_message_replies_gen.go#L406: return fmt.Errorf("unable to decode messageReplies#4128faac: field recent_repliers: %w", err)
tl_message_replies_gen.go#L411: return fmt.Errorf("unable to decode messageReplies#4128faac: field recent_repliers: %w", err)
tl_message_replies_gen.go#L419: return fmt.Errorf("unable to decode messageReplies#4128faac: field channel_id: %w", err)
tl_message_replies_gen.go#L426: return fmt.Errorf("unable to decode messageReplies#4128faac: field max_id: %w", err)
tl_message_replies_gen.go#L433: return fmt.Errorf("unable to decode messageReplies#4128faac: field read_max_id: %w", err)
tl_message_reply_header_gen.go#L157: return fmt.Errorf("can't encode messageReplyHeader#a6d57763 as nil")
tl_message_reply_header_gen.go#L166: return fmt.Errorf("can't encode messageReplyHeader#a6d57763 as nil")
tl_message_reply_header_gen.go#L175: return fmt.Errorf("unable to encode messageReplyHeader#a6d57763: field flags: %w", err)
tl_message_reply_header_gen.go#L180: return fmt.Errorf("unable to encode messageReplyHeader#a6d57763: field reply_to_peer_id is nil")
tl_message_reply_header_gen.go#L183: return fmt.Errorf("unable to encode messageReplyHeader#a6d57763: field reply_to_peer_id: %w", err)
tl_message_reply_header_gen.go#L230: return fmt.Errorf("can't decode messageReplyHeader#a6d57763 to nil")
tl_message_reply_header_gen.go#L233: return fmt.Errorf("unable to decode messageReplyHeader#a6d57763: %w", err)
tl_message_reply_header_gen.go#L241: return fmt.Errorf("can't decode messageReplyHeader#a6d57763 to nil")
tl_message_reply_header_gen.go#L245: return fmt.Errorf("unable to decode messageReplyHeader#a6d57763: field flags: %w", err)
tl_message_reply_header_gen.go#L251: return fmt.Errorf("unable to decode messageReplyHeader#a6d57763: field reply_to_msg_id: %w", err)
tl_message_reply_header_gen.go#L258: return fmt.Errorf("unable to decode messageReplyHeader#a6d57763: field reply_to_peer_id: %w", err)
tl_message_reply_header_gen.go#L265: return fmt.Errorf("unable to decode messageReplyHeader#a6d57763: field reply_to_top_id: %w", err)
tl_message_user_vote_gen.go#L127: return fmt.Errorf("can't encode messageUserVote#a28e5559 as nil")
tl_message_user_vote_gen.go#L136: return fmt.Errorf("can't encode messageUserVote#a28e5559 as nil")
tl_message_user_vote_gen.go#L162: return fmt.Errorf("can't decode messageUserVote#a28e5559 to nil")
tl_message_user_vote_gen.go#L165: return fmt.Errorf("unable to decode messageUserVote#a28e5559: %w", err)
tl_message_user_vote_gen.go#L173: return fmt.Errorf("can't decode messageUserVote#a28e5559 to nil")
tl_message_user_vote_gen.go#L178: return fmt.Errorf("unable to decode messageUserVote#a28e5559: field user_id: %w", err)
tl_message_user_vote_gen.go#L185: return fmt.Errorf("unable to decode messageUserVote#a28e5559: field option: %w", err)
tl_message_user_vote_gen.go#L192: return fmt.Errorf("unable to decode messageUserVote#a28e5559: field date: %w", err)
tl_message_user_vote_gen.go#L300: return fmt.Errorf("can't encode messageUserVoteInputOption#36377430 as nil")
tl_message_user_vote_gen.go#L309: return fmt.Errorf("can't encode messageUserVoteInputOption#36377430 as nil")
tl_message_user_vote_gen.go#L329: return fmt.Errorf("can't decode messageUserVoteInputOption#36377430 to nil")
tl_message_user_vote_gen.go#L332: return fmt.Errorf("unable to decode messageUserVoteInputOption#36377430: %w", err)
tl_message_user_vote_gen.go#L340: return fmt.Errorf("can't decode messageUserVoteInputOption#36377430 to nil")
tl_message_user_vote_gen.go#L345: return fmt.Errorf("unable to decode messageUserVoteInputOption#36377430: field user_id: %w", err)
tl_message_user_vote_gen.go#L352: return fmt.Errorf("unable to decode messageUserVoteInputOption#36377430: field date: %w", err)
tl_message_user_vote_gen.go#L467: return fmt.Errorf("can't encode messageUserVoteMultiple#e8fe0de as nil")
tl_message_user_vote_gen.go#L476: return fmt.Errorf("can't encode messageUserVoteMultiple#e8fe0de as nil")
tl_message_user_vote_gen.go#L505: return fmt.Errorf("can't decode messageUserVoteMultiple#e8fe0de to nil")
tl_message_user_vote_gen.go#L508: return fmt.Errorf("unable to decode messageUserVoteMultiple#e8fe0de: %w", err)
tl_message_user_vote_gen.go#L516: return fmt.Errorf("can't decode messageUserVoteMultiple#e8fe0de to nil")
tl_message_user_vote_gen.go#L521: return fmt.Errorf("unable to decode messageUserVoteMultiple#e8fe0de: field user_id: %w", err)
tl_message_user_vote_gen.go#L528: return fmt.Errorf("unable to decode messageUserVoteMultiple#e8fe0de: field options: %w", err)
tl_message_user_vote_gen.go#L533: return fmt.Errorf("unable to decode messageUserVoteMultiple#e8fe0de: field options: %w", err)
tl_message_user_vote_gen.go#L541: return fmt.Errorf("unable to decode messageUserVoteMultiple#e8fe0de: field date: %w", err)
tl_message_user_vote_gen.go#L612: return nil, fmt.Errorf("unable to decode MessageUserVoteClass: %w", err)
tl_message_user_vote_gen.go#L619: return nil, fmt.Errorf("unable to decode MessageUserVoteClass: %w", err)
tl_message_user_vote_gen.go#L626: return nil, fmt.Errorf("unable to decode MessageUserVoteClass: %w", err)
tl_message_user_vote_gen.go#L630: return nil, fmt.Errorf("unable to decode MessageUserVoteClass: %w", bin.NewUnexpectedID(id))
tl_message_user_vote_gen.go#L642: return fmt.Errorf("unable to decode MessageUserVoteBox to nil")
tl_message_user_vote_gen.go#L646: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_message_user_vote_gen.go#L655: return fmt.Errorf("unable to encode MessageUserVoteClass as nil")
tl_message_views_gen.go#L156: return fmt.Errorf("can't encode messageViews#455b853d as nil")
tl_message_views_gen.go#L165: return fmt.Errorf("can't encode messageViews#455b853d as nil")
tl_message_views_gen.go#L177: return fmt.Errorf("unable to encode messageViews#455b853d: field flags: %w", err)
tl_message_views_gen.go#L187: return fmt.Errorf("unable to encode messageViews#455b853d: field replies: %w", err)
tl_message_views_gen.go#L241: return fmt.Errorf("can't decode messageViews#455b853d to nil")
tl_message_views_gen.go#L244: return fmt.Errorf("unable to decode messageViews#455b853d: %w", err)
tl_message_views_gen.go#L252: return fmt.Errorf("can't decode messageViews#455b853d to nil")
tl_message_views_gen.go#L256: return fmt.Errorf("unable to decode messageViews#455b853d: field flags: %w", err)
tl_message_views_gen.go#L262: return fmt.Errorf("unable to decode messageViews#455b853d: field views: %w", err)
tl_message_views_gen.go#L269: return fmt.Errorf("unable to decode messageViews#455b853d: field forwards: %w", err)
tl_message_views_gen.go#L275: return fmt.Errorf("unable to decode messageViews#455b853d: field replies: %w", err)
tl_messages_accept_encryption_gen.go#L130: return fmt.Errorf("can't encode messages.acceptEncryption#3dbc0415 as nil")
tl_messages_accept_encryption_gen.go#L139: return fmt.Errorf("can't encode messages.acceptEncryption#3dbc0415 as nil")
tl_messages_accept_encryption_gen.go#L142: return fmt.Errorf("unable to encode messages.acceptEncryption#3dbc0415: field peer: %w", err)
tl_messages_accept_encryption_gen.go#L167: return fmt.Errorf("can't decode messages.acceptEncryption#3dbc0415 to nil")
tl_messages_accept_encryption_gen.go#L170: return fmt.Errorf("unable to decode messages.acceptEncryption#3dbc0415: %w", err)
tl_messages_accept_encryption_gen.go#L178: return fmt.Errorf("can't decode messages.acceptEncryption#3dbc0415 to nil")
tl_messages_accept_encryption_gen.go#L182: return fmt.Errorf("unable to decode messages.acceptEncryption#3dbc0415: field peer: %w", err)
tl_messages_accept_encryption_gen.go#L188: return fmt.Errorf("unable to decode messages.acceptEncryption#3dbc0415: field g_b: %w", err)
tl_messages_accept_encryption_gen.go#L195: return fmt.Errorf("unable to decode messages.acceptEncryption#3dbc0415: field key_fingerprint: %w", err)
tl_messages_accept_url_auth_gen.go#L186: return fmt.Errorf("can't encode messages.acceptUrlAuth#b12c7125 as nil")
tl_messages_accept_url_auth_gen.go#L195: return fmt.Errorf("can't encode messages.acceptUrlAuth#b12c7125 as nil")
tl_messages_accept_url_auth_gen.go#L213: return fmt.Errorf("unable to encode messages.acceptUrlAuth#b12c7125: field flags: %w", err)
tl_messages_accept_url_auth_gen.go#L217: return fmt.Errorf("unable to encode messages.acceptUrlAuth#b12c7125: field peer is nil")
tl_messages_accept_url_auth_gen.go#L220: return fmt.Errorf("unable to encode messages.acceptUrlAuth#b12c7125: field peer: %w", err)
tl_messages_accept_url_auth_gen.go#L314: return fmt.Errorf("can't decode messages.acceptUrlAuth#b12c7125 to nil")
tl_messages_accept_url_auth_gen.go#L317: return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: %w", err)
tl_messages_accept_url_auth_gen.go#L325: return fmt.Errorf("can't decode messages.acceptUrlAuth#b12c7125 to nil")
tl_messages_accept_url_auth_gen.go#L329: return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field flags: %w", err)
tl_messages_accept_url_auth_gen.go#L336: return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field peer: %w", err)
tl_messages_accept_url_auth_gen.go#L343: return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field msg_id: %w", err)
tl_messages_accept_url_auth_gen.go#L350: return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field button_id: %w", err)
tl_messages_accept_url_auth_gen.go#L357: return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field url: %w", err)
tl_messages_add_chat_user_gen.go#L127: return fmt.Errorf("can't encode messages.addChatUser#f9a0aa09 as nil")
tl_messages_add_chat_user_gen.go#L136: return fmt.Errorf("can't encode messages.addChatUser#f9a0aa09 as nil")
tl_messages_add_chat_user_gen.go#L140: return fmt.Errorf("unable to encode messages.addChatUser#f9a0aa09: field user_id is nil")
tl_messages_add_chat_user_gen.go#L143: return fmt.Errorf("unable to encode messages.addChatUser#f9a0aa09: field user_id: %w", err)
tl_messages_add_chat_user_gen.go#L167: return fmt.Errorf("can't decode messages.addChatUser#f9a0aa09 to nil")
tl_messages_add_chat_user_gen.go#L170: return fmt.Errorf("unable to decode messages.addChatUser#f9a0aa09: %w", err)
tl_messages_add_chat_user_gen.go#L178: return fmt.Errorf("can't decode messages.addChatUser#f9a0aa09 to nil")
tl_messages_add_chat_user_gen.go#L183: return fmt.Errorf("unable to decode messages.addChatUser#f9a0aa09: field chat_id: %w", err)
tl_messages_add_chat_user_gen.go#L190: return fmt.Errorf("unable to decode messages.addChatUser#f9a0aa09: field user_id: %w", err)
tl_messages_add_chat_user_gen.go#L197: return fmt.Errorf("unable to decode messages.addChatUser#f9a0aa09: field fwd_limit: %w", err)
tl_messages_affected_found_messages_gen.go#L137: return fmt.Errorf("can't encode messages.affectedFoundMessages#ef8d3e6c as nil")
tl_messages_affected_found_messages_gen.go#L146: return fmt.Errorf("can't encode messages.affectedFoundMessages#ef8d3e6c as nil")
tl_messages_affected_found_messages_gen.go#L181: return fmt.Errorf("can't decode messages.affectedFoundMessages#ef8d3e6c to nil")
tl_messages_affected_found_messages_gen.go#L184: return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: %w", err)
tl_messages_affected_found_messages_gen.go#L192: return fmt.Errorf("can't decode messages.affectedFoundMessages#ef8d3e6c to nil")
tl_messages_affected_found_messages_gen.go#L197: return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field pts: %w", err)
tl_messages_affected_found_messages_gen.go#L204: return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field pts_count: %w", err)
tl_messages_affected_found_messages_gen.go#L211: return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field offset: %w", err)
tl_messages_affected_found_messages_gen.go#L218: return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field messages: %w", err)
tl_messages_affected_found_messages_gen.go#L223: return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field messages: %w", err)
tl_messages_affected_history_gen.go#L129: return fmt.Errorf("can't encode messages.affectedHistory#b45c69d1 as nil")
tl_messages_affected_history_gen.go#L138: return fmt.Errorf("can't encode messages.affectedHistory#b45c69d1 as nil")
tl_messages_affected_history_gen.go#L164: return fmt.Errorf("can't decode messages.affectedHistory#b45c69d1 to nil")
tl_messages_affected_history_gen.go#L167: return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: %w", err)
tl_messages_affected_history_gen.go#L175: return fmt.Errorf("can't decode messages.affectedHistory#b45c69d1 to nil")
tl_messages_affected_history_gen.go#L180: return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field pts: %w", err)
tl_messages_affected_history_gen.go#L187: return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field pts_count: %w", err)
tl_messages_affected_history_gen.go#L194: return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field offset: %w", err)
tl_messages_affected_messages_gen.go#L122: return fmt.Errorf("can't encode messages.affectedMessages#84d19185 as nil")
tl_messages_affected_messages_gen.go#L131: return fmt.Errorf("can't encode messages.affectedMessages#84d19185 as nil")
tl_messages_affected_messages_gen.go#L151: return fmt.Errorf("can't decode messages.affectedMessages#84d19185 to nil")
tl_messages_affected_messages_gen.go#L154: return fmt.Errorf("unable to decode messages.affectedMessages#84d19185: %w", err)
tl_messages_affected_messages_gen.go#L162: return fmt.Errorf("can't decode messages.affectedMessages#84d19185 to nil")
tl_messages_affected_messages_gen.go#L167: return fmt.Errorf("unable to decode messages.affectedMessages#84d19185: field pts: %w", err)
tl_messages_affected_messages_gen.go#L174: return fmt.Errorf("unable to decode messages.affectedMessages#84d19185: field pts_count: %w", err)
tl_messages_all_stickers_gen.go#L88: return fmt.Errorf("can't encode messages.allStickersNotModified#e86602c3 as nil")
tl_messages_all_stickers_gen.go#L97: return fmt.Errorf("can't encode messages.allStickersNotModified#e86602c3 as nil")
tl_messages_all_stickers_gen.go#L105: return fmt.Errorf("can't decode messages.allStickersNotModified#e86602c3 to nil")
tl_messages_all_stickers_gen.go#L108: return fmt.Errorf("unable to decode messages.allStickersNotModified#e86602c3: %w", err)
tl_messages_all_stickers_gen.go#L116: return fmt.Errorf("can't decode messages.allStickersNotModified#e86602c3 to nil")
tl_messages_all_stickers_gen.go#L221: return fmt.Errorf("can't encode messages.allStickers#edfd405f as nil")
tl_messages_all_stickers_gen.go#L230: return fmt.Errorf("can't encode messages.allStickers#edfd405f as nil")
tl_messages_all_stickers_gen.go#L236: return fmt.Errorf("unable to encode messages.allStickers#edfd405f: field sets element with index %d: %w", idx, err)
tl_messages_all_stickers_gen.go#L255: return fmt.Errorf("can't decode messages.allStickers#edfd405f to nil")
tl_messages_all_stickers_gen.go#L258: return fmt.Errorf("unable to decode messages.allStickers#edfd405f: %w", err)
tl_messages_all_stickers_gen.go#L266: return fmt.Errorf("can't decode messages.allStickers#edfd405f to nil")
tl_messages_all_stickers_gen.go#L271: return fmt.Errorf("unable to decode messages.allStickers#edfd405f: field hash: %w", err)
tl_messages_all_stickers_gen.go#L278: return fmt.Errorf("unable to decode messages.allStickers#edfd405f: field sets: %w", err)
tl_messages_all_stickers_gen.go#L283: return fmt.Errorf("unable to decode messages.allStickers#edfd405f: field sets: %w", err)
tl_messages_all_stickers_gen.go#L361: return nil, fmt.Errorf("unable to decode MessagesAllStickersClass: %w", err)
tl_messages_all_stickers_gen.go#L368: return nil, fmt.Errorf("unable to decode MessagesAllStickersClass: %w", err)
tl_messages_all_stickers_gen.go#L372: return nil, fmt.Errorf("unable to decode MessagesAllStickersClass: %w", bin.NewUnexpectedID(id))
tl_messages_all_stickers_gen.go#L384: return fmt.Errorf("unable to decode MessagesAllStickersBox to nil")
tl_messages_all_stickers_gen.go#L388: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_all_stickers_gen.go#L397: return fmt.Errorf("unable to encode MessagesAllStickersClass as nil")
tl_messages_archived_stickers_gen.go#L116: return fmt.Errorf("can't encode messages.archivedStickers#4fcba9c8 as nil")
tl_messages_archived_stickers_gen.go#L125: return fmt.Errorf("can't encode messages.archivedStickers#4fcba9c8 as nil")
tl_messages_archived_stickers_gen.go#L131: return fmt.Errorf("unable to encode messages.archivedStickers#4fcba9c8: field sets element with index %d is nil", idx)
tl_messages_archived_stickers_gen.go#L134: return fmt.Errorf("unable to encode messages.archivedStickers#4fcba9c8: field sets element with index %d: %w", idx, err)
tl_messages_archived_stickers_gen.go#L158: return fmt.Errorf("can't decode messages.archivedStickers#4fcba9c8 to nil")
tl_messages_archived_stickers_gen.go#L161: return fmt.Errorf("unable to decode messages.archivedStickers#4fcba9c8: %w", err)
tl_messages_archived_stickers_gen.go#L169: return fmt.Errorf("can't decode messages.archivedStickers#4fcba9c8 to nil")
tl_messages_archived_stickers_gen.go#L174: return fmt.Errorf("unable to decode messages.archivedStickers#4fcba9c8: field count: %w", err)
tl_messages_archived_stickers_gen.go#L181: return fmt.Errorf("unable to decode messages.archivedStickers#4fcba9c8: field sets: %w", err)
tl_messages_archived_stickers_gen.go#L186: return fmt.Errorf("unable to decode messages.archivedStickers#4fcba9c8: field sets: %w", err)
tl_messages_bot_callback_answer_gen.go#L183: return fmt.Errorf("can't encode messages.botCallbackAnswer#36585ea4 as nil")
tl_messages_bot_callback_answer_gen.go#L192: return fmt.Errorf("can't encode messages.botCallbackAnswer#36585ea4 as nil")
tl_messages_bot_callback_answer_gen.go#L210: return fmt.Errorf("unable to encode messages.botCallbackAnswer#36585ea4: field flags: %w", err)
tl_messages_bot_callback_answer_gen.go#L308: return fmt.Errorf("can't decode messages.botCallbackAnswer#36585ea4 to nil")
tl_messages_bot_callback_answer_gen.go#L311: return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: %w", err)
tl_messages_bot_callback_answer_gen.go#L319: return fmt.Errorf("can't decode messages.botCallbackAnswer#36585ea4 to nil")
tl_messages_bot_callback_answer_gen.go#L323: return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: field flags: %w", err)
tl_messages_bot_callback_answer_gen.go#L332: return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: field message: %w", err)
tl_messages_bot_callback_answer_gen.go#L339: return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: field url: %w", err)
tl_messages_bot_callback_answer_gen.go#L346: return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: field cache_time: %w", err)
tl_messages_bot_results_gen.go#L192: return fmt.Errorf("can't encode messages.botResults#947ca848 as nil")
tl_messages_bot_results_gen.go#L201: return fmt.Errorf("can't encode messages.botResults#947ca848 as nil")
tl_messages_bot_results_gen.go#L213: return fmt.Errorf("unable to encode messages.botResults#947ca848: field flags: %w", err)
tl_messages_bot_results_gen.go#L221: return fmt.Errorf("unable to encode messages.botResults#947ca848: field switch_pm: %w", err)
tl_messages_bot_results_gen.go#L227: return fmt.Errorf("unable to encode messages.botResults#947ca848: field results element with index %d is nil", idx)
tl_messages_bot_results_gen.go#L230: return fmt.Errorf("unable to encode messages.botResults#947ca848: field results element with index %d: %w", idx, err)
tl_messages_bot_results_gen.go#L237: return fmt.Errorf("unable to encode messages.botResults#947ca848: field users element with index %d is nil", idx)
tl_messages_bot_results_gen.go#L240: return fmt.Errorf("unable to encode messages.botResults#947ca848: field users element with index %d: %w", idx, err)
tl_messages_bot_results_gen.go#L325: return fmt.Errorf("can't decode messages.botResults#947ca848 to nil")
tl_messages_bot_results_gen.go#L328: return fmt.Errorf("unable to decode messages.botResults#947ca848: %w", err)
tl_messages_bot_results_gen.go#L336: return fmt.Errorf("can't decode messages.botResults#947ca848 to nil")
tl_messages_bot_results_gen.go#L340: return fmt.Errorf("unable to decode messages.botResults#947ca848: field flags: %w", err)
tl_messages_bot_results_gen.go#L347: return fmt.Errorf("unable to decode messages.botResults#947ca848: field query_id: %w", err)
tl_messages_bot_results_gen.go#L354: return fmt.Errorf("unable to decode messages.botResults#947ca848: field next_offset: %w", err)
tl_messages_bot_results_gen.go#L360: return fmt.Errorf("unable to decode messages.botResults#947ca848: field switch_pm: %w", err)
tl_messages_bot_results_gen.go#L366: return fmt.Errorf("unable to decode messages.botResults#947ca848: field results: %w", err)
tl_messages_bot_results_gen.go#L371: return fmt.Errorf("unable to decode messages.botResults#947ca848: field results: %w", err)
tl_messages_bot_results_gen.go#L379: return fmt.Errorf("unable to decode messages.botResults#947ca848: field cache_time: %w", err)
tl_messages_bot_results_gen.go#L386: return fmt.Errorf("unable to decode messages.botResults#947ca848: field users: %w", err)
tl_messages_bot_results_gen.go#L391: return fmt.Errorf("unable to decode messages.botResults#947ca848: field users: %w", err)
tl_messages_chat_admins_with_invites_gen.go#L115: return fmt.Errorf("can't encode messages.chatAdminsWithInvites#b69b72d7 as nil")
tl_messages_chat_admins_with_invites_gen.go#L124: return fmt.Errorf("can't encode messages.chatAdminsWithInvites#b69b72d7 as nil")
tl_messages_chat_admins_with_invites_gen.go#L129: return fmt.Errorf("unable to encode messages.chatAdminsWithInvites#b69b72d7: field admins element with index %d: %w", idx, err)
tl_messages_chat_admins_with_invites_gen.go#L135: return fmt.Errorf("unable to encode messages.chatAdminsWithInvites#b69b72d7: field users element with index %d is nil", idx)
tl_messages_chat_admins_with_invites_gen.go#L138: return fmt.Errorf("unable to encode messages.chatAdminsWithInvites#b69b72d7: field users element with index %d: %w", idx, err)
tl_messages_chat_admins_with_invites_gen.go#L162: return fmt.Errorf("can't decode messages.chatAdminsWithInvites#b69b72d7 to nil")
tl_messages_chat_admins_with_invites_gen.go#L165: return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: %w", err)
tl_messages_chat_admins_with_invites_gen.go#L173: return fmt.Errorf("can't decode messages.chatAdminsWithInvites#b69b72d7 to nil")
tl_messages_chat_admins_with_invites_gen.go#L178: return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: field admins: %w", err)
tl_messages_chat_admins_with_invites_gen.go#L183: return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: field admins: %w", err)
tl_messages_chat_admins_with_invites_gen.go#L191: return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: field users: %w", err)
tl_messages_chat_admins_with_invites_gen.go#L196: return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: field users: %w", err)
tl_messages_chat_full_gen.go#L127: return fmt.Errorf("can't encode messages.chatFull#e5d7d19c as nil")
tl_messages_chat_full_gen.go#L136: return fmt.Errorf("can't encode messages.chatFull#e5d7d19c as nil")
tl_messages_chat_full_gen.go#L139: return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field full_chat is nil")
tl_messages_chat_full_gen.go#L142: return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field full_chat: %w", err)
tl_messages_chat_full_gen.go#L147: return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field chats element with index %d is nil", idx)
tl_messages_chat_full_gen.go#L150: return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field chats element with index %d: %w", idx, err)
tl_messages_chat_full_gen.go#L156: return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field users element with index %d is nil", idx)
tl_messages_chat_full_gen.go#L159: return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field users element with index %d: %w", idx, err)
tl_messages_chat_full_gen.go#L193: return fmt.Errorf("can't decode messages.chatFull#e5d7d19c to nil")
tl_messages_chat_full_gen.go#L196: return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: %w", err)
tl_messages_chat_full_gen.go#L204: return fmt.Errorf("can't decode messages.chatFull#e5d7d19c to nil")
tl_messages_chat_full_gen.go#L209: return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field full_chat: %w", err)
tl_messages_chat_full_gen.go#L216: return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field chats: %w", err)
tl_messages_chat_full_gen.go#L221: return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field chats: %w", err)
tl_messages_chat_full_gen.go#L229: return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field users: %w", err)
tl_messages_chat_full_gen.go#L234: return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field users: %w", err)
tl_messages_chat_invite_importers_gen.go#L126: return fmt.Errorf("can't encode messages.chatInviteImporters#81b6b00a as nil")
tl_messages_chat_invite_importers_gen.go#L135: return fmt.Errorf("can't encode messages.chatInviteImporters#81b6b00a as nil")
tl_messages_chat_invite_importers_gen.go#L141: return fmt.Errorf("unable to encode messages.chatInviteImporters#81b6b00a: field importers element with index %d: %w", idx, err)
tl_messages_chat_invite_importers_gen.go#L147: return fmt.Errorf("unable to encode messages.chatInviteImporters#81b6b00a: field users element with index %d is nil", idx)
tl_messages_chat_invite_importers_gen.go#L150: return fmt.Errorf("unable to encode messages.chatInviteImporters#81b6b00a: field users element with index %d: %w", idx, err)
tl_messages_chat_invite_importers_gen.go#L179: return fmt.Errorf("can't decode messages.chatInviteImporters#81b6b00a to nil")
tl_messages_chat_invite_importers_gen.go#L182: return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: %w", err)
tl_messages_chat_invite_importers_gen.go#L190: return fmt.Errorf("can't decode messages.chatInviteImporters#81b6b00a to nil")
tl_messages_chat_invite_importers_gen.go#L195: return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field count: %w", err)
tl_messages_chat_invite_importers_gen.go#L202: return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field importers: %w", err)
tl_messages_chat_invite_importers_gen.go#L207: return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field importers: %w", err)
tl_messages_chat_invite_importers_gen.go#L215: return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field users: %w", err)
tl_messages_chat_invite_importers_gen.go#L220: return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field users: %w", err)
tl_messages_chats_gen.go#L105: return fmt.Errorf("can't encode messages.chats#64ff9fd5 as nil")
tl_messages_chats_gen.go#L114: return fmt.Errorf("can't encode messages.chats#64ff9fd5 as nil")
tl_messages_chats_gen.go#L119: return fmt.Errorf("unable to encode messages.chats#64ff9fd5: field chats element with index %d is nil", idx)
tl_messages_chats_gen.go#L122: return fmt.Errorf("unable to encode messages.chats#64ff9fd5: field chats element with index %d: %w", idx, err)
tl_messages_chats_gen.go#L141: return fmt.Errorf("can't decode messages.chats#64ff9fd5 to nil")
tl_messages_chats_gen.go#L144: return fmt.Errorf("unable to decode messages.chats#64ff9fd5: %w", err)
tl_messages_chats_gen.go#L152: return fmt.Errorf("can't decode messages.chats#64ff9fd5 to nil")
tl_messages_chats_gen.go#L157: return fmt.Errorf("unable to decode messages.chats#64ff9fd5: field chats: %w", err)
tl_messages_chats_gen.go#L162: return fmt.Errorf("unable to decode messages.chats#64ff9fd5: field chats: %w", err)
tl_messages_chats_gen.go#L270: return fmt.Errorf("can't encode messages.chatsSlice#9cd81144 as nil")
tl_messages_chats_gen.go#L279: return fmt.Errorf("can't encode messages.chatsSlice#9cd81144 as nil")
tl_messages_chats_gen.go#L285: return fmt.Errorf("unable to encode messages.chatsSlice#9cd81144: field chats element with index %d is nil", idx)
tl_messages_chats_gen.go#L288: return fmt.Errorf("unable to encode messages.chatsSlice#9cd81144: field chats element with index %d: %w", idx, err)
tl_messages_chats_gen.go#L312: return fmt.Errorf("can't decode messages.chatsSlice#9cd81144 to nil")
tl_messages_chats_gen.go#L315: return fmt.Errorf("unable to decode messages.chatsSlice#9cd81144: %w", err)
tl_messages_chats_gen.go#L323: return fmt.Errorf("can't decode messages.chatsSlice#9cd81144 to nil")
tl_messages_chats_gen.go#L328: return fmt.Errorf("unable to decode messages.chatsSlice#9cd81144: field count: %w", err)
tl_messages_chats_gen.go#L335: return fmt.Errorf("unable to decode messages.chatsSlice#9cd81144: field chats: %w", err)
tl_messages_chats_gen.go#L340: return fmt.Errorf("unable to decode messages.chatsSlice#9cd81144: field chats: %w", err)
tl_messages_chats_gen.go#L410: return nil, fmt.Errorf("unable to decode MessagesChatsClass: %w", err)
tl_messages_chats_gen.go#L417: return nil, fmt.Errorf("unable to decode MessagesChatsClass: %w", err)
tl_messages_chats_gen.go#L421: return nil, fmt.Errorf("unable to decode MessagesChatsClass: %w", bin.NewUnexpectedID(id))
tl_messages_chats_gen.go#L433: return fmt.Errorf("unable to decode MessagesChatsBox to nil")
tl_messages_chats_gen.go#L437: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_chats_gen.go#L446: return fmt.Errorf("unable to encode MessagesChatsClass as nil")
tl_messages_check_chat_invite_gen.go#L105: return fmt.Errorf("can't encode messages.checkChatInvite#3eadb1bb as nil")
tl_messages_check_chat_invite_gen.go#L114: return fmt.Errorf("can't encode messages.checkChatInvite#3eadb1bb as nil")
tl_messages_check_chat_invite_gen.go#L128: return fmt.Errorf("can't decode messages.checkChatInvite#3eadb1bb to nil")
tl_messages_check_chat_invite_gen.go#L131: return fmt.Errorf("unable to decode messages.checkChatInvite#3eadb1bb: %w", err)
tl_messages_check_chat_invite_gen.go#L139: return fmt.Errorf("can't decode messages.checkChatInvite#3eadb1bb to nil")
tl_messages_check_chat_invite_gen.go#L144: return fmt.Errorf("unable to decode messages.checkChatInvite#3eadb1bb: field hash: %w", err)
tl_messages_check_history_import_gen.go#L104: return fmt.Errorf("can't encode messages.checkHistoryImport#43fe19f3 as nil")
tl_messages_check_history_import_gen.go#L113: return fmt.Errorf("can't encode messages.checkHistoryImport#43fe19f3 as nil")
tl_messages_check_history_import_gen.go#L127: return fmt.Errorf("can't decode messages.checkHistoryImport#43fe19f3 to nil")
tl_messages_check_history_import_gen.go#L130: return fmt.Errorf("unable to decode messages.checkHistoryImport#43fe19f3: %w", err)
tl_messages_check_history_import_gen.go#L138: return fmt.Errorf("can't decode messages.checkHistoryImport#43fe19f3 to nil")
tl_messages_check_history_import_gen.go#L143: return fmt.Errorf("unable to decode messages.checkHistoryImport#43fe19f3: field import_head: %w", err)
tl_messages_check_history_import_peer_gen.go#L104: return fmt.Errorf("can't encode messages.checkHistoryImportPeer#5dc60f03 as nil")
tl_messages_check_history_import_peer_gen.go#L113: return fmt.Errorf("can't encode messages.checkHistoryImportPeer#5dc60f03 as nil")
tl_messages_check_history_import_peer_gen.go#L116: return fmt.Errorf("unable to encode messages.checkHistoryImportPeer#5dc60f03: field peer is nil")
tl_messages_check_history_import_peer_gen.go#L119: return fmt.Errorf("unable to encode messages.checkHistoryImportPeer#5dc60f03: field peer: %w", err)
tl_messages_check_history_import_peer_gen.go#L132: return fmt.Errorf("can't decode messages.checkHistoryImportPeer#5dc60f03 to nil")
tl_messages_check_history_import_peer_gen.go#L135: return fmt.Errorf("unable to decode messages.checkHistoryImportPeer#5dc60f03: %w", err)
tl_messages_check_history_import_peer_gen.go#L143: return fmt.Errorf("can't decode messages.checkHistoryImportPeer#5dc60f03 to nil")
tl_messages_check_history_import_peer_gen.go#L148: return fmt.Errorf("unable to decode messages.checkHistoryImportPeer#5dc60f03: field peer: %w", err)
tl_messages_checked_history_import_peer_gen.go#L104: return fmt.Errorf("can't encode messages.checkedHistoryImportPeer#a24de717 as nil")
tl_messages_checked_history_import_peer_gen.go#L113: return fmt.Errorf("can't encode messages.checkedHistoryImportPeer#a24de717 as nil")
tl_messages_checked_history_import_peer_gen.go#L127: return fmt.Errorf("can't decode messages.checkedHistoryImportPeer#a24de717 to nil")
tl_messages_checked_history_import_peer_gen.go#L130: return fmt.Errorf("unable to decode messages.checkedHistoryImportPeer#a24de717: %w", err)
tl_messages_checked_history_import_peer_gen.go#L138: return fmt.Errorf("can't decode messages.checkedHistoryImportPeer#a24de717 to nil")
tl_messages_checked_history_import_peer_gen.go#L143: return fmt.Errorf("unable to decode messages.checkedHistoryImportPeer#a24de717: field confirm_text: %w", err)
tl_messages_clear_all_drafts_gen.go#L91: return fmt.Errorf("can't encode messages.clearAllDrafts#7e58ee9c as nil")
tl_messages_clear_all_drafts_gen.go#L100: return fmt.Errorf("can't encode messages.clearAllDrafts#7e58ee9c as nil")
tl_messages_clear_all_drafts_gen.go#L108: return fmt.Errorf("can't decode messages.clearAllDrafts#7e58ee9c to nil")
tl_messages_clear_all_drafts_gen.go#L111: return fmt.Errorf("unable to decode messages.clearAllDrafts#7e58ee9c: %w", err)
tl_messages_clear_all_drafts_gen.go#L119: return fmt.Errorf("can't decode messages.clearAllDrafts#7e58ee9c to nil")
tl_messages_clear_recent_stickers_gen.go#L114: return fmt.Errorf("can't encode messages.clearRecentStickers#8999602d as nil")
tl_messages_clear_recent_stickers_gen.go#L123: return fmt.Errorf("can't encode messages.clearRecentStickers#8999602d as nil")
tl_messages_clear_recent_stickers_gen.go#L129: return fmt.Errorf("unable to encode messages.clearRecentStickers#8999602d: field flags: %w", err)
tl_messages_clear_recent_stickers_gen.go#L153: return fmt.Errorf("can't decode messages.clearRecentStickers#8999602d to nil")
tl_messages_clear_recent_stickers_gen.go#L156: return fmt.Errorf("unable to decode messages.clearRecentStickers#8999602d: %w", err)
tl_messages_clear_recent_stickers_gen.go#L164: return fmt.Errorf("can't decode messages.clearRecentStickers#8999602d to nil")
tl_messages_clear_recent_stickers_gen.go#L168: return fmt.Errorf("unable to decode messages.clearRecentStickers#8999602d: field flags: %w", err)
tl_messages_create_chat_gen.go#L116: return fmt.Errorf("can't encode messages.createChat#9cb126e as nil")
tl_messages_create_chat_gen.go#L125: return fmt.Errorf("can't encode messages.createChat#9cb126e as nil")
tl_messages_create_chat_gen.go#L130: return fmt.Errorf("unable to encode messages.createChat#9cb126e: field users element with index %d is nil", idx)
tl_messages_create_chat_gen.go#L133: return fmt.Errorf("unable to encode messages.createChat#9cb126e: field users element with index %d: %w", idx, err)
tl_messages_create_chat_gen.go#L158: return fmt.Errorf("can't decode messages.createChat#9cb126e to nil")
tl_messages_create_chat_gen.go#L161: return fmt.Errorf("unable to decode messages.createChat#9cb126e: %w", err)
tl_messages_create_chat_gen.go#L169: return fmt.Errorf("can't decode messages.createChat#9cb126e to nil")
tl_messages_create_chat_gen.go#L174: return fmt.Errorf("unable to decode messages.createChat#9cb126e: field users: %w", err)
tl_messages_create_chat_gen.go#L179: return fmt.Errorf("unable to decode messages.createChat#9cb126e: field users: %w", err)
tl_messages_create_chat_gen.go#L187: return fmt.Errorf("unable to decode messages.createChat#9cb126e: field title: %w", err)
tl_messages_delete_chat_gen.go#L104: return fmt.Errorf("can't encode messages.deleteChat#83247d11 as nil")
tl_messages_delete_chat_gen.go#L113: return fmt.Errorf("can't encode messages.deleteChat#83247d11 as nil")
tl_messages_delete_chat_gen.go#L127: return fmt.Errorf("can't decode messages.deleteChat#83247d11 to nil")
tl_messages_delete_chat_gen.go#L130: return fmt.Errorf("unable to decode messages.deleteChat#83247d11: %w", err)
tl_messages_delete_chat_gen.go#L138: return fmt.Errorf("can't decode messages.deleteChat#83247d11 to nil")
tl_messages_delete_chat_gen.go#L143: return fmt.Errorf("unable to decode messages.deleteChat#83247d11: field chat_id: %w", err)
tl_messages_delete_chat_user_gen.go#L133: return fmt.Errorf("can't encode messages.deleteChatUser#c534459a as nil")
tl_messages_delete_chat_user_gen.go#L142: return fmt.Errorf("can't encode messages.deleteChatUser#c534459a as nil")
tl_messages_delete_chat_user_gen.go#L148: return fmt.Errorf("unable to encode messages.deleteChatUser#c534459a: field flags: %w", err)
tl_messages_delete_chat_user_gen.go#L152: return fmt.Errorf("unable to encode messages.deleteChatUser#c534459a: field user_id is nil")
tl_messages_delete_chat_user_gen.go#L155: return fmt.Errorf("unable to encode messages.deleteChatUser#c534459a: field user_id: %w", err)
tl_messages_delete_chat_user_gen.go#L189: return fmt.Errorf("can't decode messages.deleteChatUser#c534459a to nil")
tl_messages_delete_chat_user_gen.go#L192: return fmt.Errorf("unable to decode messages.deleteChatUser#c534459a: %w", err)
tl_messages_delete_chat_user_gen.go#L200: return fmt.Errorf("can't decode messages.deleteChatUser#c534459a to nil")
tl_messages_delete_chat_user_gen.go#L204: return fmt.Errorf("unable to decode messages.deleteChatUser#c534459a: field flags: %w", err)
tl_messages_delete_chat_user_gen.go#L211: return fmt.Errorf("unable to decode messages.deleteChatUser#c534459a: field chat_id: %w", err)
tl_messages_delete_chat_user_gen.go#L218: return fmt.Errorf("unable to decode messages.deleteChatUser#c534459a: field user_id: %w", err)
tl_messages_delete_exported_chat_invite_gen.go#L115: return fmt.Errorf("can't encode messages.deleteExportedChatInvite#d464a42b as nil")
tl_messages_delete_exported_chat_invite_gen.go#L124: return fmt.Errorf("can't encode messages.deleteExportedChatInvite#d464a42b as nil")
tl_messages_delete_exported_chat_invite_gen.go#L127: return fmt.Errorf("unable to encode messages.deleteExportedChatInvite#d464a42b: field peer is nil")
tl_messages_delete_exported_chat_invite_gen.go#L130: return fmt.Errorf("unable to encode messages.deleteExportedChatInvite#d464a42b: field peer: %w", err)
tl_messages_delete_exported_chat_invite_gen.go#L149: return fmt.Errorf("can't decode messages.deleteExportedChatInvite#d464a42b to nil")
tl_messages_delete_exported_chat_invite_gen.go#L152: return fmt.Errorf("unable to decode messages.deleteExportedChatInvite#d464a42b: %w", err)
tl_messages_delete_exported_chat_invite_gen.go#L160: return fmt.Errorf("can't decode messages.deleteExportedChatInvite#d464a42b to nil")
tl_messages_delete_exported_chat_invite_gen.go#L165: return fmt.Errorf("unable to decode messages.deleteExportedChatInvite#d464a42b: field peer: %w", err)
tl_messages_delete_exported_chat_invite_gen.go#L172: return fmt.Errorf("unable to decode messages.deleteExportedChatInvite#d464a42b: field link: %w", err)
tl_messages_delete_history_gen.go#L149: return fmt.Errorf("can't encode messages.deleteHistory#1c015b09 as nil")
tl_messages_delete_history_gen.go#L158: return fmt.Errorf("can't encode messages.deleteHistory#1c015b09 as nil")
tl_messages_delete_history_gen.go#L167: return fmt.Errorf("unable to encode messages.deleteHistory#1c015b09: field flags: %w", err)
tl_messages_delete_history_gen.go#L170: return fmt.Errorf("unable to encode messages.deleteHistory#1c015b09: field peer is nil")
tl_messages_delete_history_gen.go#L173: return fmt.Errorf("unable to encode messages.deleteHistory#1c015b09: field peer: %w", err)
tl_messages_delete_history_gen.go#L224: return fmt.Errorf("can't decode messages.deleteHistory#1c015b09 to nil")
tl_messages_delete_history_gen.go#L227: return fmt.Errorf("unable to decode messages.deleteHistory#1c015b09: %w", err)
tl_messages_delete_history_gen.go#L235: return fmt.Errorf("can't decode messages.deleteHistory#1c015b09 to nil")
tl_messages_delete_history_gen.go#L239: return fmt.Errorf("unable to decode messages.deleteHistory#1c015b09: field flags: %w", err)
tl_messages_delete_history_gen.go#L247: return fmt.Errorf("unable to decode messages.deleteHistory#1c015b09: field peer: %w", err)
tl_messages_delete_history_gen.go#L254: return fmt.Errorf("unable to decode messages.deleteHistory#1c015b09: field max_id: %w", err)
tl_messages_delete_messages_gen.go#L125: return fmt.Errorf("can't encode messages.deleteMessages#e58e95d2 as nil")
tl_messages_delete_messages_gen.go#L134: return fmt.Errorf("can't encode messages.deleteMessages#e58e95d2 as nil")
tl_messages_delete_messages_gen.go#L140: return fmt.Errorf("unable to encode messages.deleteMessages#e58e95d2: field flags: %w", err)
tl_messages_delete_messages_gen.go#L173: return fmt.Errorf("can't decode messages.deleteMessages#e58e95d2 to nil")
tl_messages_delete_messages_gen.go#L176: return fmt.Errorf("unable to decode messages.deleteMessages#e58e95d2: %w", err)
tl_messages_delete_messages_gen.go#L184: return fmt.Errorf("can't decode messages.deleteMessages#e58e95d2 to nil")
tl_messages_delete_messages_gen.go#L188: return fmt.Errorf("unable to decode messages.deleteMessages#e58e95d2: field flags: %w", err)
tl_messages_delete_messages_gen.go#L195: return fmt.Errorf("unable to decode messages.deleteMessages#e58e95d2: field id: %w", err)
tl_messages_delete_messages_gen.go#L200: return fmt.Errorf("unable to decode messages.deleteMessages#e58e95d2: field id: %w", err)
tl_messages_delete_phone_call_history_gen.go#L110: return fmt.Errorf("can't encode messages.deletePhoneCallHistory#f9cbe409 as nil")
tl_messages_delete_phone_call_history_gen.go#L119: return fmt.Errorf("can't encode messages.deletePhoneCallHistory#f9cbe409 as nil")
tl_messages_delete_phone_call_history_gen.go#L125: return fmt.Errorf("unable to encode messages.deletePhoneCallHistory#f9cbe409: field flags: %w", err)
tl_messages_delete_phone_call_history_gen.go#L149: return fmt.Errorf("can't decode messages.deletePhoneCallHistory#f9cbe409 to nil")
tl_messages_delete_phone_call_history_gen.go#L152: return fmt.Errorf("unable to decode messages.deletePhoneCallHistory#f9cbe409: %w", err)
tl_messages_delete_phone_call_history_gen.go#L160: return fmt.Errorf("can't decode messages.deletePhoneCallHistory#f9cbe409 to nil")
tl_messages_delete_phone_call_history_gen.go#L164: return fmt.Errorf("unable to decode messages.deletePhoneCallHistory#f9cbe409: field flags: %w", err)
tl_messages_delete_revoked_exported_chat_invites_gen.go#L115: return fmt.Errorf("can't encode messages.deleteRevokedExportedChatInvites#56987bd5 as nil")
tl_messages_delete_revoked_exported_chat_invites_gen.go#L124: return fmt.Errorf("can't encode messages.deleteRevokedExportedChatInvites#56987bd5 as nil")
tl_messages_delete_revoked_exported_chat_invites_gen.go#L127: return fmt.Errorf("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field peer is nil")
tl_messages_delete_revoked_exported_chat_invites_gen.go#L130: return fmt.Errorf("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field peer: %w", err)
tl_messages_delete_revoked_exported_chat_invites_gen.go#L133: return fmt.Errorf("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id is nil")
tl_messages_delete_revoked_exported_chat_invites_gen.go#L136: return fmt.Errorf("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id: %w", err)
tl_messages_delete_revoked_exported_chat_invites_gen.go#L154: return fmt.Errorf("can't decode messages.deleteRevokedExportedChatInvites#56987bd5 to nil")
tl_messages_delete_revoked_exported_chat_invites_gen.go#L157: return fmt.Errorf("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: %w", err)
tl_messages_delete_revoked_exported_chat_invites_gen.go#L165: return fmt.Errorf("can't decode messages.deleteRevokedExportedChatInvites#56987bd5 to nil")
tl_messages_delete_revoked_exported_chat_invites_gen.go#L170: return fmt.Errorf("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: field peer: %w", err)
tl_messages_delete_revoked_exported_chat_invites_gen.go#L177: return fmt.Errorf("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id: %w", err)
tl_messages_delete_scheduled_messages_gen.go#L116: return fmt.Errorf("can't encode messages.deleteScheduledMessages#59ae2b16 as nil")
tl_messages_delete_scheduled_messages_gen.go#L125: return fmt.Errorf("can't encode messages.deleteScheduledMessages#59ae2b16 as nil")
tl_messages_delete_scheduled_messages_gen.go#L128: return fmt.Errorf("unable to encode messages.deleteScheduledMessages#59ae2b16: field peer is nil")
tl_messages_delete_scheduled_messages_gen.go#L131: return fmt.Errorf("unable to encode messages.deleteScheduledMessages#59ae2b16: field peer: %w", err)
tl_messages_delete_scheduled_messages_gen.go#L153: return fmt.Errorf("can't decode messages.deleteScheduledMessages#59ae2b16 to nil")
tl_messages_delete_scheduled_messages_gen.go#L156: return fmt.Errorf("unable to decode messages.deleteScheduledMessages#59ae2b16: %w", err)
tl_messages_delete_scheduled_messages_gen.go#L164: return fmt.Errorf("can't decode messages.deleteScheduledMessages#59ae2b16 to nil")
tl_messages_delete_scheduled_messages_gen.go#L169: return fmt.Errorf("unable to decode messages.deleteScheduledMessages#59ae2b16: field peer: %w", err)
tl_messages_delete_scheduled_messages_gen.go#L176: return fmt.Errorf("unable to decode messages.deleteScheduledMessages#59ae2b16: field id: %w", err)
tl_messages_delete_scheduled_messages_gen.go#L181: return fmt.Errorf("unable to decode messages.deleteScheduledMessages#59ae2b16: field id: %w", err)
tl_messages_dh_config_gen.go#L105: return fmt.Errorf("can't encode messages.dhConfigNotModified#c0e24635 as nil")
tl_messages_dh_config_gen.go#L114: return fmt.Errorf("can't encode messages.dhConfigNotModified#c0e24635 as nil")
tl_messages_dh_config_gen.go#L128: return fmt.Errorf("can't decode messages.dhConfigNotModified#c0e24635 to nil")
tl_messages_dh_config_gen.go#L131: return fmt.Errorf("unable to decode messages.dhConfigNotModified#c0e24635: %w", err)
tl_messages_dh_config_gen.go#L139: return fmt.Errorf("can't decode messages.dhConfigNotModified#c0e24635 to nil")
tl_messages_dh_config_gen.go#L144: return fmt.Errorf("unable to decode messages.dhConfigNotModified#c0e24635: field random: %w", err)
tl_messages_dh_config_gen.go#L276: return fmt.Errorf("can't encode messages.dhConfig#2c221edd as nil")
tl_messages_dh_config_gen.go#L285: return fmt.Errorf("can't encode messages.dhConfig#2c221edd as nil")
tl_messages_dh_config_gen.go#L317: return fmt.Errorf("can't decode messages.dhConfig#2c221edd to nil")
tl_messages_dh_config_gen.go#L320: return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: %w", err)
tl_messages_dh_config_gen.go#L328: return fmt.Errorf("can't decode messages.dhConfig#2c221edd to nil")
tl_messages_dh_config_gen.go#L333: return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: field g: %w", err)
tl_messages_dh_config_gen.go#L340: return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: field p: %w", err)
tl_messages_dh_config_gen.go#L347: return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: field version: %w", err)
tl_messages_dh_config_gen.go#L354: return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: field random: %w", err)
tl_messages_dh_config_gen.go#L433: return nil, fmt.Errorf("unable to decode MessagesDhConfigClass: %w", err)
tl_messages_dh_config_gen.go#L440: return nil, fmt.Errorf("unable to decode MessagesDhConfigClass: %w", err)
tl_messages_dh_config_gen.go#L444: return nil, fmt.Errorf("unable to decode MessagesDhConfigClass: %w", bin.NewUnexpectedID(id))
tl_messages_dh_config_gen.go#L456: return fmt.Errorf("unable to decode MessagesDhConfigBox to nil")
tl_messages_dh_config_gen.go#L460: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_dh_config_gen.go#L469: return fmt.Errorf("unable to encode MessagesDhConfigClass as nil")
tl_messages_dialogs_gen.go#L138: return fmt.Errorf("can't encode messages.dialogs#15ba6c40 as nil")
tl_messages_dialogs_gen.go#L147: return fmt.Errorf("can't encode messages.dialogs#15ba6c40 as nil")
tl_messages_dialogs_gen.go#L152: return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field dialogs element with index %d is nil", idx)
tl_messages_dialogs_gen.go#L155: return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field dialogs element with index %d: %w", idx, err)
tl_messages_dialogs_gen.go#L161: return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field messages element with index %d is nil", idx)
tl_messages_dialogs_gen.go#L164: return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field messages element with index %d: %w", idx, err)
tl_messages_dialogs_gen.go#L170: return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field chats element with index %d is nil", idx)
tl_messages_dialogs_gen.go#L173: return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field chats element with index %d: %w", idx, err)
tl_messages_dialogs_gen.go#L179: return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field users element with index %d is nil", idx)
tl_messages_dialogs_gen.go#L182: return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field users element with index %d: %w", idx, err)
tl_messages_dialogs_gen.go#L231: return fmt.Errorf("can't decode messages.dialogs#15ba6c40 to nil")
tl_messages_dialogs_gen.go#L234: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: %w", err)
tl_messages_dialogs_gen.go#L242: return fmt.Errorf("can't decode messages.dialogs#15ba6c40 to nil")
tl_messages_dialogs_gen.go#L247: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field dialogs: %w", err)
tl_messages_dialogs_gen.go#L252: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field dialogs: %w", err)
tl_messages_dialogs_gen.go#L260: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field messages: %w", err)
tl_messages_dialogs_gen.go#L265: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field messages: %w", err)
tl_messages_dialogs_gen.go#L273: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field chats: %w", err)
tl_messages_dialogs_gen.go#L278: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field chats: %w", err)
tl_messages_dialogs_gen.go#L286: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field users: %w", err)
tl_messages_dialogs_gen.go#L291: return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field users: %w", err)
tl_messages_dialogs_gen.go#L429: return fmt.Errorf("can't encode messages.dialogsSlice#71e094f3 as nil")
tl_messages_dialogs_gen.go#L438: return fmt.Errorf("can't encode messages.dialogsSlice#71e094f3 as nil")
tl_messages_dialogs_gen.go#L444: return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field dialogs element with index %d is nil", idx)
tl_messages_dialogs_gen.go#L447: return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field dialogs element with index %d: %w", idx, err)
tl_messages_dialogs_gen.go#L453: return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field messages element with index %d is nil", idx)
tl_messages_dialogs_gen.go#L456: return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field messages element with index %d: %w", idx, err)
tl_messages_dialogs_gen.go#L462: return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field chats element with index %d is nil", idx)
tl_messages_dialogs_gen.go#L465: return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field chats element with index %d: %w", idx, err)
tl_messages_dialogs_gen.go#L471: return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field users element with index %d is nil", idx)
tl_messages_dialogs_gen.go#L474: return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field users element with index %d: %w", idx, err)
tl_messages_dialogs_gen.go#L528: return fmt.Errorf("can't decode messages.dialogsSlice#71e094f3 to nil")
tl_messages_dialogs_gen.go#L531: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: %w", err)
tl_messages_dialogs_gen.go#L539: return fmt.Errorf("can't decode messages.dialogsSlice#71e094f3 to nil")
tl_messages_dialogs_gen.go#L544: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field count: %w", err)
tl_messages_dialogs_gen.go#L551: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field dialogs: %w", err)
tl_messages_dialogs_gen.go#L556: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field dialogs: %w", err)
tl_messages_dialogs_gen.go#L564: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field messages: %w", err)
tl_messages_dialogs_gen.go#L569: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field messages: %w", err)
tl_messages_dialogs_gen.go#L577: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field chats: %w", err)
tl_messages_dialogs_gen.go#L582: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field chats: %w", err)
tl_messages_dialogs_gen.go#L590: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field users: %w", err)
tl_messages_dialogs_gen.go#L595: return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field users: %w", err)
tl_messages_dialogs_gen.go#L689: return fmt.Errorf("can't encode messages.dialogsNotModified#f0e3e596 as nil")
tl_messages_dialogs_gen.go#L698: return fmt.Errorf("can't encode messages.dialogsNotModified#f0e3e596 as nil")
tl_messages_dialogs_gen.go#L712: return fmt.Errorf("can't decode messages.dialogsNotModified#f0e3e596 to nil")
tl_messages_dialogs_gen.go#L715: return fmt.Errorf("unable to decode messages.dialogsNotModified#f0e3e596: %w", err)
tl_messages_dialogs_gen.go#L723: return fmt.Errorf("can't decode messages.dialogsNotModified#f0e3e596 to nil")
tl_messages_dialogs_gen.go#L728: return fmt.Errorf("unable to decode messages.dialogsNotModified#f0e3e596: field count: %w", err)
tl_messages_dialogs_gen.go#L846: return nil, fmt.Errorf("unable to decode MessagesDialogsClass: %w", err)
tl_messages_dialogs_gen.go#L853: return nil, fmt.Errorf("unable to decode MessagesDialogsClass: %w", err)
tl_messages_dialogs_gen.go#L860: return nil, fmt.Errorf("unable to decode MessagesDialogsClass: %w", err)
tl_messages_dialogs_gen.go#L864: return nil, fmt.Errorf("unable to decode MessagesDialogsClass: %w", bin.NewUnexpectedID(id))
tl_messages_dialogs_gen.go#L876: return fmt.Errorf("unable to decode MessagesDialogsBox to nil")
tl_messages_dialogs_gen.go#L880: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_dialogs_gen.go#L889: return fmt.Errorf("unable to encode MessagesDialogsClass as nil")
tl_messages_discard_encryption_gen.go#L122: return fmt.Errorf("can't encode messages.discardEncryption#f393aea0 as nil")
tl_messages_discard_encryption_gen.go#L131: return fmt.Errorf("can't encode messages.discardEncryption#f393aea0 as nil")
tl_messages_discard_encryption_gen.go#L137: return fmt.Errorf("unable to encode messages.discardEncryption#f393aea0: field flags: %w", err)
tl_messages_discard_encryption_gen.go#L167: return fmt.Errorf("can't decode messages.discardEncryption#f393aea0 to nil")
tl_messages_discard_encryption_gen.go#L170: return fmt.Errorf("unable to decode messages.discardEncryption#f393aea0: %w", err)
tl_messages_discard_encryption_gen.go#L178: return fmt.Errorf("can't decode messages.discardEncryption#f393aea0 to nil")
tl_messages_discard_encryption_gen.go#L182: return fmt.Errorf("unable to decode messages.discardEncryption#f393aea0: field flags: %w", err)
tl_messages_discard_encryption_gen.go#L189: return fmt.Errorf("unable to decode messages.discardEncryption#f393aea0: field chat_id: %w", err)
tl_messages_discussion_message_gen.go#L198: return fmt.Errorf("can't encode messages.discussionMessage#f5dd8f9d as nil")
tl_messages_discussion_message_gen.go#L207: return fmt.Errorf("can't encode messages.discussionMessage#f5dd8f9d as nil")
tl_messages_discussion_message_gen.go#L219: return fmt.Errorf("unable to encode messages.discussionMessage#f5dd8f9d: field flags: %w", err)
tl_messages_discussion_message_gen.go#L224: return fmt.Errorf("unable to encode messages.discussionMessage#f5dd8f9d: field messages element with index %d is nil", idx)
tl_messages_discussion_message_gen.go#L227: return fmt.Errorf("unable to encode messages.discussionMessage#f5dd8f9d: field messages element with index %d: %w", idx, err)
tl_messages_discussion_message_gen.go#L242: return fmt.Errorf("unable to encode messages.discussionMessage#f5dd8f9d: field chats element with index %d is nil", idx)
tl_messages_discussion_message_gen.go#L245: return fmt.Errorf("unable to encode messages.discussionMessage#f5dd8f9d: field chats element with index %d: %w", idx, err)
tl_messages_discussion_message_gen.go#L251: return fmt.Errorf("unable to encode messages.discussionMessage#f5dd8f9d: field users element with index %d is nil", idx)
tl_messages_discussion_message_gen.go#L254: return fmt.Errorf("unable to encode messages.discussionMessage#f5dd8f9d: field users element with index %d: %w", idx, err)
tl_messages_discussion_message_gen.go#L338: return fmt.Errorf("can't decode messages.discussionMessage#f5dd8f9d to nil")
tl_messages_discussion_message_gen.go#L341: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: %w", err)
tl_messages_discussion_message_gen.go#L349: return fmt.Errorf("can't decode messages.discussionMessage#f5dd8f9d to nil")
tl_messages_discussion_message_gen.go#L353: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field flags: %w", err)
tl_messages_discussion_message_gen.go#L359: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field messages: %w", err)
tl_messages_discussion_message_gen.go#L364: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field messages: %w", err)
tl_messages_discussion_message_gen.go#L372: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field max_id: %w", err)
tl_messages_discussion_message_gen.go#L379: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field read_inbox_max_id: %w", err)
tl_messages_discussion_message_gen.go#L386: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field read_outbox_max_id: %w", err)
tl_messages_discussion_message_gen.go#L393: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field chats: %w", err)
tl_messages_discussion_message_gen.go#L398: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field chats: %w", err)
tl_messages_discussion_message_gen.go#L406: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field users: %w", err)
tl_messages_discussion_message_gen.go#L411: return fmt.Errorf("unable to decode messages.discussionMessage#f5dd8f9d: field users: %w", err)
tl_messages_edit_chat_about_gen.go#L122: return fmt.Errorf("can't encode messages.editChatAbout#def60797 as nil")
tl_messages_edit_chat_about_gen.go#L131: return fmt.Errorf("can't encode messages.editChatAbout#def60797 as nil")
tl_messages_edit_chat_about_gen.go#L134: return fmt.Errorf("unable to encode messages.editChatAbout#def60797: field peer is nil")
tl_messages_edit_chat_about_gen.go#L137: return fmt.Errorf("unable to encode messages.editChatAbout#def60797: field peer: %w", err)
tl_messages_edit_chat_about_gen.go#L156: return fmt.Errorf("can't decode messages.editChatAbout#def60797 to nil")
tl_messages_edit_chat_about_gen.go#L159: return fmt.Errorf("unable to decode messages.editChatAbout#def60797: %w", err)
tl_messages_edit_chat_about_gen.go#L167: return fmt.Errorf("can't decode messages.editChatAbout#def60797 to nil")
tl_messages_edit_chat_about_gen.go#L172: return fmt.Errorf("unable to decode messages.editChatAbout#def60797: field peer: %w", err)
tl_messages_edit_chat_about_gen.go#L179: return fmt.Errorf("unable to decode messages.editChatAbout#def60797: field about: %w", err)
tl_messages_edit_chat_admin_gen.go#L130: return fmt.Errorf("can't encode messages.editChatAdmin#a9e69f2e as nil")
tl_messages_edit_chat_admin_gen.go#L139: return fmt.Errorf("can't encode messages.editChatAdmin#a9e69f2e as nil")
tl_messages_edit_chat_admin_gen.go#L143: return fmt.Errorf("unable to encode messages.editChatAdmin#a9e69f2e: field user_id is nil")
tl_messages_edit_chat_admin_gen.go#L146: return fmt.Errorf("unable to encode messages.editChatAdmin#a9e69f2e: field user_id: %w", err)
tl_messages_edit_chat_admin_gen.go#L170: return fmt.Errorf("can't decode messages.editChatAdmin#a9e69f2e to nil")
tl_messages_edit_chat_admin_gen.go#L173: return fmt.Errorf("unable to decode messages.editChatAdmin#a9e69f2e: %w", err)
tl_messages_edit_chat_admin_gen.go#L181: return fmt.Errorf("can't decode messages.editChatAdmin#a9e69f2e to nil")
tl_messages_edit_chat_admin_gen.go#L186: return fmt.Errorf("unable to decode messages.editChatAdmin#a9e69f2e: field chat_id: %w", err)
tl_messages_edit_chat_admin_gen.go#L193: return fmt.Errorf("unable to decode messages.editChatAdmin#a9e69f2e: field user_id: %w", err)
tl_messages_edit_chat_admin_gen.go#L200: return fmt.Errorf("unable to decode messages.editChatAdmin#a9e69f2e: field is_admin: %w", err)
tl_messages_edit_chat_default_banned_rights_gen.go#L119: return fmt.Errorf("can't encode messages.editChatDefaultBannedRights#a5866b41 as nil")
tl_messages_edit_chat_default_banned_rights_gen.go#L128: return fmt.Errorf("can't encode messages.editChatDefaultBannedRights#a5866b41 as nil")
tl_messages_edit_chat_default_banned_rights_gen.go#L131: return fmt.Errorf("unable to encode messages.editChatDefaultBannedRights#a5866b41: field peer is nil")
tl_messages_edit_chat_default_banned_rights_gen.go#L134: return fmt.Errorf("unable to encode messages.editChatDefaultBannedRights#a5866b41: field peer: %w", err)
tl_messages_edit_chat_default_banned_rights_gen.go#L137: return fmt.Errorf("unable to encode messages.editChatDefaultBannedRights#a5866b41: field banned_rights: %w", err)
tl_messages_edit_chat_default_banned_rights_gen.go#L155: return fmt.Errorf("can't decode messages.editChatDefaultBannedRights#a5866b41 to nil")
tl_messages_edit_chat_default_banned_rights_gen.go#L158: return fmt.Errorf("unable to decode messages.editChatDefaultBannedRights#a5866b41: %w", err)
tl_messages_edit_chat_default_banned_rights_gen.go#L166: return fmt.Errorf("can't decode messages.editChatDefaultBannedRights#a5866b41 to nil")
tl_messages_edit_chat_default_banned_rights_gen.go#L171: return fmt.Errorf("unable to decode messages.editChatDefaultBannedRights#a5866b41: field peer: %w", err)
tl_messages_edit_chat_default_banned_rights_gen.go#L177: return fmt.Errorf("unable to decode messages.editChatDefaultBannedRights#a5866b41: field banned_rights: %w", err)
tl_messages_edit_chat_photo_gen.go#L116: return fmt.Errorf("can't encode messages.editChatPhoto#ca4c79d8 as nil")
tl_messages_edit_chat_photo_gen.go#L125: return fmt.Errorf("can't encode messages.editChatPhoto#ca4c79d8 as nil")
tl_messages_edit_chat_photo_gen.go#L129: return fmt.Errorf("unable to encode messages.editChatPhoto#ca4c79d8: field photo is nil")
tl_messages_edit_chat_photo_gen.go#L132: return fmt.Errorf("unable to encode messages.editChatPhoto#ca4c79d8: field photo: %w", err)
tl_messages_edit_chat_photo_gen.go#L150: return fmt.Errorf("can't decode messages.editChatPhoto#ca4c79d8 to nil")
tl_messages_edit_chat_photo_gen.go#L153: return fmt.Errorf("unable to decode messages.editChatPhoto#ca4c79d8: %w", err)
tl_messages_edit_chat_photo_gen.go#L161: return fmt.Errorf("can't decode messages.editChatPhoto#ca4c79d8 to nil")
tl_messages_edit_chat_photo_gen.go#L166: return fmt.Errorf("unable to decode messages.editChatPhoto#ca4c79d8: field chat_id: %w", err)
tl_messages_edit_chat_photo_gen.go#L173: return fmt.Errorf("unable to decode messages.editChatPhoto#ca4c79d8: field photo: %w", err)
tl_messages_edit_chat_title_gen.go#L116: return fmt.Errorf("can't encode messages.editChatTitle#dc452855 as nil")
tl_messages_edit_chat_title_gen.go#L125: return fmt.Errorf("can't encode messages.editChatTitle#dc452855 as nil")
tl_messages_edit_chat_title_gen.go#L145: return fmt.Errorf("can't decode messages.editChatTitle#dc452855 to nil")
tl_messages_edit_chat_title_gen.go#L148: return fmt.Errorf("unable to decode messages.editChatTitle#dc452855: %w", err)
tl_messages_edit_chat_title_gen.go#L156: return fmt.Errorf("can't decode messages.editChatTitle#dc452855 to nil")
tl_messages_edit_chat_title_gen.go#L161: return fmt.Errorf("unable to decode messages.editChatTitle#dc452855: field chat_id: %w", err)
tl_messages_edit_chat_title_gen.go#L168: return fmt.Errorf("unable to decode messages.editChatTitle#dc452855: field title: %w", err)
tl_messages_edit_exported_chat_invite_gen.go#L166: return fmt.Errorf("can't encode messages.editExportedChatInvite#2e4ffbe as nil")
tl_messages_edit_exported_chat_invite_gen.go#L175: return fmt.Errorf("can't encode messages.editExportedChatInvite#2e4ffbe as nil")
tl_messages_edit_exported_chat_invite_gen.go#L187: return fmt.Errorf("unable to encode messages.editExportedChatInvite#2e4ffbe: field flags: %w", err)
tl_messages_edit_exported_chat_invite_gen.go#L190: return fmt.Errorf("unable to encode messages.editExportedChatInvite#2e4ffbe: field peer is nil")
tl_messages_edit_exported_chat_invite_gen.go#L193: return fmt.Errorf("unable to encode messages.editExportedChatInvite#2e4ffbe: field peer: %w", err)
tl_messages_edit_exported_chat_invite_gen.go#L264: return fmt.Errorf("can't decode messages.editExportedChatInvite#2e4ffbe to nil")
tl_messages_edit_exported_chat_invite_gen.go#L267: return fmt.Errorf("unable to decode messages.editExportedChatInvite#2e4ffbe: %w", err)
tl_messages_edit_exported_chat_invite_gen.go#L275: return fmt.Errorf("can't decode messages.editExportedChatInvite#2e4ffbe to nil")
tl_messages_edit_exported_chat_invite_gen.go#L279: return fmt.Errorf("unable to decode messages.editExportedChatInvite#2e4ffbe: field flags: %w", err)
tl_messages_edit_exported_chat_invite_gen.go#L286: return fmt.Errorf("unable to decode messages.editExportedChatInvite#2e4ffbe: field peer: %w", err)
tl_messages_edit_exported_chat_invite_gen.go#L293: return fmt.Errorf("unable to decode messages.editExportedChatInvite#2e4ffbe: field link: %w", err)
tl_messages_edit_exported_chat_invite_gen.go#L300: return fmt.Errorf("unable to decode messages.editExportedChatInvite#2e4ffbe: field expire_date: %w", err)
tl_messages_edit_exported_chat_invite_gen.go#L307: return fmt.Errorf("unable to decode messages.editExportedChatInvite#2e4ffbe: field usage_limit: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L196: return fmt.Errorf("can't encode messages.editInlineBotMessage#83557dba as nil")
tl_messages_edit_inline_bot_message_gen.go#L205: return fmt.Errorf("can't encode messages.editInlineBotMessage#83557dba as nil")
tl_messages_edit_inline_bot_message_gen.go#L223: return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field flags: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L226: return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field id: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L233: return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field media is nil")
tl_messages_edit_inline_bot_message_gen.go#L236: return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field media: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L241: return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field reply_markup is nil")
tl_messages_edit_inline_bot_message_gen.go#L244: return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field reply_markup: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L251: return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field entities element with index %d is nil", idx)
tl_messages_edit_inline_bot_message_gen.go#L254: return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field entities element with index %d: %w", idx, err)
tl_messages_edit_inline_bot_message_gen.go#L353: return fmt.Errorf("can't decode messages.editInlineBotMessage#83557dba to nil")
tl_messages_edit_inline_bot_message_gen.go#L356: return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L364: return fmt.Errorf("can't decode messages.editInlineBotMessage#83557dba to nil")
tl_messages_edit_inline_bot_message_gen.go#L368: return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field flags: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L374: return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field id: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L380: return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field message: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L387: return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field media: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L394: return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field reply_markup: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L401: return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field entities: %w", err)
tl_messages_edit_inline_bot_message_gen.go#L406: return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field entities: %w", err)
tl_messages_edit_message_gen.go#L227: return fmt.Errorf("can't encode messages.editMessage#48f71778 as nil")
tl_messages_edit_message_gen.go#L236: return fmt.Errorf("can't encode messages.editMessage#48f71778 as nil")
tl_messages_edit_message_gen.go#L257: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field flags: %w", err)
tl_messages_edit_message_gen.go#L260: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field peer is nil")
tl_messages_edit_message_gen.go#L263: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field peer: %w", err)
tl_messages_edit_message_gen.go#L271: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field media is nil")
tl_messages_edit_message_gen.go#L274: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field media: %w", err)
tl_messages_edit_message_gen.go#L279: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field reply_markup is nil")
tl_messages_edit_message_gen.go#L282: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field reply_markup: %w", err)
tl_messages_edit_message_gen.go#L289: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field entities element with index %d is nil", idx)
tl_messages_edit_message_gen.go#L292: return fmt.Errorf("unable to encode messages.editMessage#48f71778: field entities element with index %d: %w", idx, err)
tl_messages_edit_message_gen.go#L414: return fmt.Errorf("can't decode messages.editMessage#48f71778 to nil")
tl_messages_edit_message_gen.go#L417: return fmt.Errorf("unable to decode messages.editMessage#48f71778: %w", err)
tl_messages_edit_message_gen.go#L425: return fmt.Errorf("can't decode messages.editMessage#48f71778 to nil")
tl_messages_edit_message_gen.go#L429: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field flags: %w", err)
tl_messages_edit_message_gen.go#L436: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field peer: %w", err)
tl_messages_edit_message_gen.go#L443: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field id: %w", err)
tl_messages_edit_message_gen.go#L450: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field message: %w", err)
tl_messages_edit_message_gen.go#L457: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field media: %w", err)
tl_messages_edit_message_gen.go#L464: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field reply_markup: %w", err)
tl_messages_edit_message_gen.go#L471: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field entities: %w", err)
tl_messages_edit_message_gen.go#L476: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field entities: %w", err)
tl_messages_edit_message_gen.go#L484: return fmt.Errorf("unable to decode messages.editMessage#48f71778: field schedule_date: %w", err)
tl_messages_export_chat_invite_gen.go#L156: return fmt.Errorf("can't encode messages.exportChatInvite#14b9bcd7 as nil")
tl_messages_export_chat_invite_gen.go#L165: return fmt.Errorf("can't encode messages.exportChatInvite#14b9bcd7 as nil")
tl_messages_export_chat_invite_gen.go#L177: return fmt.Errorf("unable to encode messages.exportChatInvite#14b9bcd7: field flags: %w", err)
tl_messages_export_chat_invite_gen.go#L180: return fmt.Errorf("unable to encode messages.exportChatInvite#14b9bcd7: field peer is nil")
tl_messages_export_chat_invite_gen.go#L183: return fmt.Errorf("unable to encode messages.exportChatInvite#14b9bcd7: field peer: %w", err)
tl_messages_export_chat_invite_gen.go#L248: return fmt.Errorf("can't decode messages.exportChatInvite#14b9bcd7 to nil")
tl_messages_export_chat_invite_gen.go#L251: return fmt.Errorf("unable to decode messages.exportChatInvite#14b9bcd7: %w", err)
tl_messages_export_chat_invite_gen.go#L259: return fmt.Errorf("can't decode messages.exportChatInvite#14b9bcd7 to nil")
tl_messages_export_chat_invite_gen.go#L263: return fmt.Errorf("unable to decode messages.exportChatInvite#14b9bcd7: field flags: %w", err)
tl_messages_export_chat_invite_gen.go#L270: return fmt.Errorf("unable to decode messages.exportChatInvite#14b9bcd7: field peer: %w", err)
tl_messages_export_chat_invite_gen.go#L277: return fmt.Errorf("unable to decode messages.exportChatInvite#14b9bcd7: field expire_date: %w", err)
tl_messages_export_chat_invite_gen.go#L284: return fmt.Errorf("unable to decode messages.exportChatInvite#14b9bcd7: field usage_limit: %w", err)
tl_messages_exported_chat_invite_gen.go#L115: return fmt.Errorf("can't encode messages.exportedChatInvite#1871be50 as nil")
tl_messages_exported_chat_invite_gen.go#L124: return fmt.Errorf("can't encode messages.exportedChatInvite#1871be50 as nil")
tl_messages_exported_chat_invite_gen.go#L127: return fmt.Errorf("unable to encode messages.exportedChatInvite#1871be50: field invite: %w", err)
tl_messages_exported_chat_invite_gen.go#L132: return fmt.Errorf("unable to encode messages.exportedChatInvite#1871be50: field users element with index %d is nil", idx)
tl_messages_exported_chat_invite_gen.go#L135: return fmt.Errorf("unable to encode messages.exportedChatInvite#1871be50: field users element with index %d: %w", idx, err)
tl_messages_exported_chat_invite_gen.go#L159: return fmt.Errorf("can't decode messages.exportedChatInvite#1871be50 to nil")
tl_messages_exported_chat_invite_gen.go#L162: return fmt.Errorf("unable to decode messages.exportedChatInvite#1871be50: %w", err)
tl_messages_exported_chat_invite_gen.go#L170: return fmt.Errorf("can't decode messages.exportedChatInvite#1871be50 to nil")
tl_messages_exported_chat_invite_gen.go#L174: return fmt.Errorf("unable to decode messages.exportedChatInvite#1871be50: field invite: %w", err)
tl_messages_exported_chat_invite_gen.go#L180: return fmt.Errorf("unable to decode messages.exportedChatInvite#1871be50: field users: %w", err)
tl_messages_exported_chat_invite_gen.go#L185: return fmt.Errorf("unable to decode messages.exportedChatInvite#1871be50: field users: %w", err)
tl_messages_exported_chat_invite_gen.go#L300: return fmt.Errorf("can't encode messages.exportedChatInviteReplaced#222600ef as nil")
tl_messages_exported_chat_invite_gen.go#L309: return fmt.Errorf("can't encode messages.exportedChatInviteReplaced#222600ef as nil")
tl_messages_exported_chat_invite_gen.go#L312: return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field invite: %w", err)
tl_messages_exported_chat_invite_gen.go#L315: return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field new_invite: %w", err)
tl_messages_exported_chat_invite_gen.go#L320: return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field users element with index %d is nil", idx)
tl_messages_exported_chat_invite_gen.go#L323: return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field users element with index %d: %w", idx, err)
tl_messages_exported_chat_invite_gen.go#L352: return fmt.Errorf("can't decode messages.exportedChatInviteReplaced#222600ef to nil")
tl_messages_exported_chat_invite_gen.go#L355: return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: %w", err)
tl_messages_exported_chat_invite_gen.go#L363: return fmt.Errorf("can't decode messages.exportedChatInviteReplaced#222600ef to nil")
tl_messages_exported_chat_invite_gen.go#L367: return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: field invite: %w", err)
tl_messages_exported_chat_invite_gen.go#L372: return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: field new_invite: %w", err)
tl_messages_exported_chat_invite_gen.go#L378: return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: field users: %w", err)
tl_messages_exported_chat_invite_gen.go#L383: return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: field users: %w", err)
tl_messages_exported_chat_invite_gen.go#L456: return nil, fmt.Errorf("unable to decode MessagesExportedChatInviteClass: %w", err)
tl_messages_exported_chat_invite_gen.go#L463: return nil, fmt.Errorf("unable to decode MessagesExportedChatInviteClass: %w", err)
tl_messages_exported_chat_invite_gen.go#L467: return nil, fmt.Errorf("unable to decode MessagesExportedChatInviteClass: %w", bin.NewUnexpectedID(id))
tl_messages_exported_chat_invite_gen.go#L479: return fmt.Errorf("unable to decode MessagesExportedChatInviteBox to nil")
tl_messages_exported_chat_invite_gen.go#L483: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_exported_chat_invite_gen.go#L492: return fmt.Errorf("unable to encode MessagesExportedChatInviteClass as nil")
tl_messages_exported_chat_invites_gen.go#L126: return fmt.Errorf("can't encode messages.exportedChatInvites#bdc62dcc as nil")
tl_messages_exported_chat_invites_gen.go#L135: return fmt.Errorf("can't encode messages.exportedChatInvites#bdc62dcc as nil")
tl_messages_exported_chat_invites_gen.go#L141: return fmt.Errorf("unable to encode messages.exportedChatInvites#bdc62dcc: field invites element with index %d: %w", idx, err)
tl_messages_exported_chat_invites_gen.go#L147: return fmt.Errorf("unable to encode messages.exportedChatInvites#bdc62dcc: field users element with index %d is nil", idx)
tl_messages_exported_chat_invites_gen.go#L150: return fmt.Errorf("unable to encode messages.exportedChatInvites#bdc62dcc: field users element with index %d: %w", idx, err)
tl_messages_exported_chat_invites_gen.go#L179: return fmt.Errorf("can't decode messages.exportedChatInvites#bdc62dcc to nil")
tl_messages_exported_chat_invites_gen.go#L182: return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: %w", err)
tl_messages_exported_chat_invites_gen.go#L190: return fmt.Errorf("can't decode messages.exportedChatInvites#bdc62dcc to nil")
tl_messages_exported_chat_invites_gen.go#L195: return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field count: %w", err)
tl_messages_exported_chat_invites_gen.go#L202: return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field invites: %w", err)
tl_messages_exported_chat_invites_gen.go#L207: return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field invites: %w", err)
tl_messages_exported_chat_invites_gen.go#L215: return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field users: %w", err)
tl_messages_exported_chat_invites_gen.go#L220: return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field users: %w", err)
tl_messages_fave_sticker_gen.go#L116: return fmt.Errorf("can't encode messages.faveSticker#b9ffc55b as nil")
tl_messages_fave_sticker_gen.go#L125: return fmt.Errorf("can't encode messages.faveSticker#b9ffc55b as nil")
tl_messages_fave_sticker_gen.go#L128: return fmt.Errorf("unable to encode messages.faveSticker#b9ffc55b: field id is nil")
tl_messages_fave_sticker_gen.go#L131: return fmt.Errorf("unable to encode messages.faveSticker#b9ffc55b: field id: %w", err)
tl_messages_fave_sticker_gen.go#L155: return fmt.Errorf("can't decode messages.faveSticker#b9ffc55b to nil")
tl_messages_fave_sticker_gen.go#L158: return fmt.Errorf("unable to decode messages.faveSticker#b9ffc55b: %w", err)
tl_messages_fave_sticker_gen.go#L166: return fmt.Errorf("can't decode messages.faveSticker#b9ffc55b to nil")
tl_messages_fave_sticker_gen.go#L171: return fmt.Errorf("unable to decode messages.faveSticker#b9ffc55b: field id: %w", err)
tl_messages_fave_sticker_gen.go#L178: return fmt.Errorf("unable to decode messages.faveSticker#b9ffc55b: field unfave: %w", err)
tl_messages_faved_stickers_gen.go#L88: return fmt.Errorf("can't encode messages.favedStickersNotModified#9e8fa6d3 as nil")
tl_messages_faved_stickers_gen.go#L97: return fmt.Errorf("can't encode messages.favedStickersNotModified#9e8fa6d3 as nil")
tl_messages_faved_stickers_gen.go#L105: return fmt.Errorf("can't decode messages.favedStickersNotModified#9e8fa6d3 to nil")
tl_messages_faved_stickers_gen.go#L108: return fmt.Errorf("unable to decode messages.favedStickersNotModified#9e8fa6d3: %w", err)
tl_messages_faved_stickers_gen.go#L116: return fmt.Errorf("can't decode messages.favedStickersNotModified#9e8fa6d3 to nil")
tl_messages_faved_stickers_gen.go#L232: return fmt.Errorf("can't encode messages.favedStickers#f37f2f16 as nil")
tl_messages_faved_stickers_gen.go#L241: return fmt.Errorf("can't encode messages.favedStickers#f37f2f16 as nil")
tl_messages_faved_stickers_gen.go#L247: return fmt.Errorf("unable to encode messages.favedStickers#f37f2f16: field packs element with index %d: %w", idx, err)
tl_messages_faved_stickers_gen.go#L253: return fmt.Errorf("unable to encode messages.favedStickers#f37f2f16: field stickers element with index %d is nil", idx)
tl_messages_faved_stickers_gen.go#L256: return fmt.Errorf("unable to encode messages.favedStickers#f37f2f16: field stickers element with index %d: %w", idx, err)
tl_messages_faved_stickers_gen.go#L285: return fmt.Errorf("can't decode messages.favedStickers#f37f2f16 to nil")
tl_messages_faved_stickers_gen.go#L288: return fmt.Errorf("unable to decode messages.favedStickers#f37f2f16: %w", err)
tl_messages_faved_stickers_gen.go#L296: return fmt.Errorf("can't decode messages.favedStickers#f37f2f16 to nil")
tl_messages_faved_stickers_gen.go#L301: return fmt.Errorf("unable to decode messages.favedStickers#f37f2f16: field hash: %w", err)
tl_messages_faved_stickers_gen.go#L308: return fmt.Errorf("unable to decode messages.favedStickers#f37f2f16: field packs: %w", err)
tl_messages_faved_stickers_gen.go#L313: return fmt.Errorf("unable to decode messages.favedStickers#f37f2f16: field packs: %w", err)
tl_messages_faved_stickers_gen.go#L321: return fmt.Errorf("unable to decode messages.favedStickers#f37f2f16: field stickers: %w", err)
tl_messages_faved_stickers_gen.go#L326: return fmt.Errorf("unable to decode messages.favedStickers#f37f2f16: field stickers: %w", err)
tl_messages_faved_stickers_gen.go#L404: return nil, fmt.Errorf("unable to decode MessagesFavedStickersClass: %w", err)
tl_messages_faved_stickers_gen.go#L411: return nil, fmt.Errorf("unable to decode MessagesFavedStickersClass: %w", err)
tl_messages_faved_stickers_gen.go#L415: return nil, fmt.Errorf("unable to decode MessagesFavedStickersClass: %w", bin.NewUnexpectedID(id))
tl_messages_faved_stickers_gen.go#L427: return fmt.Errorf("unable to decode MessagesFavedStickersBox to nil")
tl_messages_faved_stickers_gen.go#L431: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_faved_stickers_gen.go#L440: return fmt.Errorf("unable to encode MessagesFavedStickersClass as nil")
tl_messages_featured_stickers_gen.go#L105: return fmt.Errorf("can't encode messages.featuredStickersNotModified#c6dc0c66 as nil")
tl_messages_featured_stickers_gen.go#L114: return fmt.Errorf("can't encode messages.featuredStickersNotModified#c6dc0c66 as nil")
tl_messages_featured_stickers_gen.go#L128: return fmt.Errorf("can't decode messages.featuredStickersNotModified#c6dc0c66 to nil")
tl_messages_featured_stickers_gen.go#L131: return fmt.Errorf("unable to decode messages.featuredStickersNotModified#c6dc0c66: %w", err)
tl_messages_featured_stickers_gen.go#L139: return fmt.Errorf("can't decode messages.featuredStickersNotModified#c6dc0c66 to nil")
tl_messages_featured_stickers_gen.go#L144: return fmt.Errorf("unable to decode messages.featuredStickersNotModified#c6dc0c66: field count: %w", err)
tl_messages_featured_stickers_gen.go#L273: return fmt.Errorf("can't encode messages.featuredStickers#b6abc341 as nil")
tl_messages_featured_stickers_gen.go#L282: return fmt.Errorf("can't encode messages.featuredStickers#b6abc341 as nil")
tl_messages_featured_stickers_gen.go#L289: return fmt.Errorf("unable to encode messages.featuredStickers#b6abc341: field sets element with index %d is nil", idx)
tl_messages_featured_stickers_gen.go#L292: return fmt.Errorf("unable to encode messages.featuredStickers#b6abc341: field sets element with index %d: %w", idx, err)
tl_messages_featured_stickers_gen.go#L330: return fmt.Errorf("can't decode messages.featuredStickers#b6abc341 to nil")
tl_messages_featured_stickers_gen.go#L333: return fmt.Errorf("unable to decode messages.featuredStickers#b6abc341: %w", err)
tl_messages_featured_stickers_gen.go#L341: return fmt.Errorf("can't decode messages.featuredStickers#b6abc341 to nil")
tl_messages_featured_stickers_gen.go#L346: return fmt.Errorf("unable to decode messages.featuredStickers#b6abc341: field hash: %w", err)
tl_messages_featured_stickers_gen.go#L353: return fmt.Errorf("unable to decode messages.featuredStickers#b6abc341: field count: %w", err)
tl_messages_featured_stickers_gen.go#L360: return fmt.Errorf("unable to decode messages.featuredStickers#b6abc341: field sets: %w", err)
tl_messages_featured_stickers_gen.go#L365: return fmt.Errorf("unable to decode messages.featuredStickers#b6abc341: field sets: %w", err)
tl_messages_featured_stickers_gen.go#L373: return fmt.Errorf("unable to decode messages.featuredStickers#b6abc341: field unread: %w", err)
tl_messages_featured_stickers_gen.go#L378: return fmt.Errorf("unable to decode messages.featuredStickers#b6abc341: field unread: %w", err)
tl_messages_featured_stickers_gen.go#L459: return nil, fmt.Errorf("unable to decode MessagesFeaturedStickersClass: %w", err)
tl_messages_featured_stickers_gen.go#L466: return nil, fmt.Errorf("unable to decode MessagesFeaturedStickersClass: %w", err)
tl_messages_featured_stickers_gen.go#L470: return nil, fmt.Errorf("unable to decode MessagesFeaturedStickersClass: %w", bin.NewUnexpectedID(id))
tl_messages_featured_stickers_gen.go#L482: return fmt.Errorf("unable to decode MessagesFeaturedStickersBox to nil")
tl_messages_featured_stickers_gen.go#L486: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_featured_stickers_gen.go#L495: return fmt.Errorf("unable to encode MessagesFeaturedStickersClass as nil")
tl_messages_filter_gen.go#L88: return fmt.Errorf("can't encode inputMessagesFilterEmpty#57e2f66c as nil")
tl_messages_filter_gen.go#L97: return fmt.Errorf("can't encode inputMessagesFilterEmpty#57e2f66c as nil")
tl_messages_filter_gen.go#L105: return fmt.Errorf("can't decode inputMessagesFilterEmpty#57e2f66c to nil")
tl_messages_filter_gen.go#L108: return fmt.Errorf("unable to decode inputMessagesFilterEmpty#57e2f66c: %w", err)
tl_messages_filter_gen.go#L116: return fmt.Errorf("can't decode inputMessagesFilterEmpty#57e2f66c to nil")
tl_messages_filter_gen.go#L190: return fmt.Errorf("can't encode inputMessagesFilterPhotos#9609a51c as nil")
tl_messages_filter_gen.go#L199: return fmt.Errorf("can't encode inputMessagesFilterPhotos#9609a51c as nil")
tl_messages_filter_gen.go#L207: return fmt.Errorf("can't decode inputMessagesFilterPhotos#9609a51c to nil")
tl_messages_filter_gen.go#L210: return fmt.Errorf("unable to decode inputMessagesFilterPhotos#9609a51c: %w", err)
tl_messages_filter_gen.go#L218: return fmt.Errorf("can't decode inputMessagesFilterPhotos#9609a51c to nil")
tl_messages_filter_gen.go#L292: return fmt.Errorf("can't encode inputMessagesFilterVideo#9fc00e65 as nil")
tl_messages_filter_gen.go#L301: return fmt.Errorf("can't encode inputMessagesFilterVideo#9fc00e65 as nil")
tl_messages_filter_gen.go#L309: return fmt.Errorf("can't decode inputMessagesFilterVideo#9fc00e65 to nil")
tl_messages_filter_gen.go#L312: return fmt.Errorf("unable to decode inputMessagesFilterVideo#9fc00e65: %w", err)
tl_messages_filter_gen.go#L320: return fmt.Errorf("can't decode inputMessagesFilterVideo#9fc00e65 to nil")
tl_messages_filter_gen.go#L394: return fmt.Errorf("can't encode inputMessagesFilterPhotoVideo#56e9f0e4 as nil")
tl_messages_filter_gen.go#L403: return fmt.Errorf("can't encode inputMessagesFilterPhotoVideo#56e9f0e4 as nil")
tl_messages_filter_gen.go#L411: return fmt.Errorf("can't decode inputMessagesFilterPhotoVideo#56e9f0e4 to nil")
tl_messages_filter_gen.go#L414: return fmt.Errorf("unable to decode inputMessagesFilterPhotoVideo#56e9f0e4: %w", err)
tl_messages_filter_gen.go#L422: return fmt.Errorf("can't decode inputMessagesFilterPhotoVideo#56e9f0e4 to nil")
tl_messages_filter_gen.go#L496: return fmt.Errorf("can't encode inputMessagesFilterDocument#9eddf188 as nil")
tl_messages_filter_gen.go#L505: return fmt.Errorf("can't encode inputMessagesFilterDocument#9eddf188 as nil")
tl_messages_filter_gen.go#L513: return fmt.Errorf("can't decode inputMessagesFilterDocument#9eddf188 to nil")
tl_messages_filter_gen.go#L516: return fmt.Errorf("unable to decode inputMessagesFilterDocument#9eddf188: %w", err)
tl_messages_filter_gen.go#L524: return fmt.Errorf("can't decode inputMessagesFilterDocument#9eddf188 to nil")
tl_messages_filter_gen.go#L598: return fmt.Errorf("can't encode inputMessagesFilterUrl#7ef0dd87 as nil")
tl_messages_filter_gen.go#L607: return fmt.Errorf("can't encode inputMessagesFilterUrl#7ef0dd87 as nil")
tl_messages_filter_gen.go#L615: return fmt.Errorf("can't decode inputMessagesFilterUrl#7ef0dd87 to nil")
tl_messages_filter_gen.go#L618: return fmt.Errorf("unable to decode inputMessagesFilterUrl#7ef0dd87: %w", err)
tl_messages_filter_gen.go#L626: return fmt.Errorf("can't decode inputMessagesFilterUrl#7ef0dd87 to nil")
tl_messages_filter_gen.go#L700: return fmt.Errorf("can't encode inputMessagesFilterGif#ffc86587 as nil")
tl_messages_filter_gen.go#L709: return fmt.Errorf("can't encode inputMessagesFilterGif#ffc86587 as nil")
tl_messages_filter_gen.go#L717: return fmt.Errorf("can't decode inputMessagesFilterGif#ffc86587 to nil")
tl_messages_filter_gen.go#L720: return fmt.Errorf("unable to decode inputMessagesFilterGif#ffc86587: %w", err)
tl_messages_filter_gen.go#L728: return fmt.Errorf("can't decode inputMessagesFilterGif#ffc86587 to nil")
tl_messages_filter_gen.go#L802: return fmt.Errorf("can't encode inputMessagesFilterVoice#50f5c392 as nil")
tl_messages_filter_gen.go#L811: return fmt.Errorf("can't encode inputMessagesFilterVoice#50f5c392 as nil")
tl_messages_filter_gen.go#L819: return fmt.Errorf("can't decode inputMessagesFilterVoice#50f5c392 to nil")
tl_messages_filter_gen.go#L822: return fmt.Errorf("unable to decode inputMessagesFilterVoice#50f5c392: %w", err)
tl_messages_filter_gen.go#L830: return fmt.Errorf("can't decode inputMessagesFilterVoice#50f5c392 to nil")
tl_messages_filter_gen.go#L904: return fmt.Errorf("can't encode inputMessagesFilterMusic#3751b49e as nil")
tl_messages_filter_gen.go#L913: return fmt.Errorf("can't encode inputMessagesFilterMusic#3751b49e as nil")
tl_messages_filter_gen.go#L921: return fmt.Errorf("can't decode inputMessagesFilterMusic#3751b49e to nil")
tl_messages_filter_gen.go#L924: return fmt.Errorf("unable to decode inputMessagesFilterMusic#3751b49e: %w", err)
tl_messages_filter_gen.go#L932: return fmt.Errorf("can't decode inputMessagesFilterMusic#3751b49e to nil")
tl_messages_filter_gen.go#L1006: return fmt.Errorf("can't encode inputMessagesFilterChatPhotos#3a20ecb8 as nil")
tl_messages_filter_gen.go#L1015: return fmt.Errorf("can't encode inputMessagesFilterChatPhotos#3a20ecb8 as nil")
tl_messages_filter_gen.go#L1023: return fmt.Errorf("can't decode inputMessagesFilterChatPhotos#3a20ecb8 to nil")
tl_messages_filter_gen.go#L1026: return fmt.Errorf("unable to decode inputMessagesFilterChatPhotos#3a20ecb8: %w", err)
tl_messages_filter_gen.go#L1034: return fmt.Errorf("can't decode inputMessagesFilterChatPhotos#3a20ecb8 to nil")
tl_messages_filter_gen.go#L1134: return fmt.Errorf("can't encode inputMessagesFilterPhoneCalls#80c99768 as nil")
tl_messages_filter_gen.go#L1143: return fmt.Errorf("can't encode inputMessagesFilterPhoneCalls#80c99768 as nil")
tl_messages_filter_gen.go#L1149: return fmt.Errorf("unable to encode inputMessagesFilterPhoneCalls#80c99768: field flags: %w", err)
tl_messages_filter_gen.go#L1173: return fmt.Errorf("can't decode inputMessagesFilterPhoneCalls#80c99768 to nil")
tl_messages_filter_gen.go#L1176: return fmt.Errorf("unable to decode inputMessagesFilterPhoneCalls#80c99768: %w", err)
tl_messages_filter_gen.go#L1184: return fmt.Errorf("can't decode inputMessagesFilterPhoneCalls#80c99768 to nil")
tl_messages_filter_gen.go#L1188: return fmt.Errorf("unable to decode inputMessagesFilterPhoneCalls#80c99768: field flags: %w", err)
tl_messages_filter_gen.go#L1264: return fmt.Errorf("can't encode inputMessagesFilterRoundVoice#7a7c17a4 as nil")
tl_messages_filter_gen.go#L1273: return fmt.Errorf("can't encode inputMessagesFilterRoundVoice#7a7c17a4 as nil")
tl_messages_filter_gen.go#L1281: return fmt.Errorf("can't decode inputMessagesFilterRoundVoice#7a7c17a4 to nil")
tl_messages_filter_gen.go#L1284: return fmt.Errorf("unable to decode inputMessagesFilterRoundVoice#7a7c17a4: %w", err)
tl_messages_filter_gen.go#L1292: return fmt.Errorf("can't decode inputMessagesFilterRoundVoice#7a7c17a4 to nil")
tl_messages_filter_gen.go#L1366: return fmt.Errorf("can't encode inputMessagesFilterRoundVideo#b549da53 as nil")
tl_messages_filter_gen.go#L1375: return fmt.Errorf("can't encode inputMessagesFilterRoundVideo#b549da53 as nil")
tl_messages_filter_gen.go#L1383: return fmt.Errorf("can't decode inputMessagesFilterRoundVideo#b549da53 to nil")
tl_messages_filter_gen.go#L1386: return fmt.Errorf("unable to decode inputMessagesFilterRoundVideo#b549da53: %w", err)
tl_messages_filter_gen.go#L1394: return fmt.Errorf("can't decode inputMessagesFilterRoundVideo#b549da53 to nil")
tl_messages_filter_gen.go#L1471: return fmt.Errorf("can't encode inputMessagesFilterMyMentions#c1f8e69a as nil")
tl_messages_filter_gen.go#L1480: return fmt.Errorf("can't encode inputMessagesFilterMyMentions#c1f8e69a as nil")
tl_messages_filter_gen.go#L1488: return fmt.Errorf("can't decode inputMessagesFilterMyMentions#c1f8e69a to nil")
tl_messages_filter_gen.go#L1491: return fmt.Errorf("unable to decode inputMessagesFilterMyMentions#c1f8e69a: %w", err)
tl_messages_filter_gen.go#L1499: return fmt.Errorf("can't decode inputMessagesFilterMyMentions#c1f8e69a to nil")
tl_messages_filter_gen.go#L1573: return fmt.Errorf("can't encode inputMessagesFilterGeo#e7026d0d as nil")
tl_messages_filter_gen.go#L1582: return fmt.Errorf("can't encode inputMessagesFilterGeo#e7026d0d as nil")
tl_messages_filter_gen.go#L1590: return fmt.Errorf("can't decode inputMessagesFilterGeo#e7026d0d to nil")
tl_messages_filter_gen.go#L1593: return fmt.Errorf("unable to decode inputMessagesFilterGeo#e7026d0d: %w", err)
tl_messages_filter_gen.go#L1601: return fmt.Errorf("can't decode inputMessagesFilterGeo#e7026d0d to nil")
tl_messages_filter_gen.go#L1675: return fmt.Errorf("can't encode inputMessagesFilterContacts#e062db83 as nil")
tl_messages_filter_gen.go#L1684: return fmt.Errorf("can't encode inputMessagesFilterContacts#e062db83 as nil")
tl_messages_filter_gen.go#L1692: return fmt.Errorf("can't decode inputMessagesFilterContacts#e062db83 to nil")
tl_messages_filter_gen.go#L1695: return fmt.Errorf("unable to decode inputMessagesFilterContacts#e062db83: %w", err)
tl_messages_filter_gen.go#L1703: return fmt.Errorf("can't decode inputMessagesFilterContacts#e062db83 to nil")
tl_messages_filter_gen.go#L1777: return fmt.Errorf("can't encode inputMessagesFilterPinned#1bb00451 as nil")
tl_messages_filter_gen.go#L1786: return fmt.Errorf("can't encode inputMessagesFilterPinned#1bb00451 as nil")
tl_messages_filter_gen.go#L1794: return fmt.Errorf("can't decode inputMessagesFilterPinned#1bb00451 to nil")
tl_messages_filter_gen.go#L1797: return fmt.Errorf("unable to decode inputMessagesFilterPinned#1bb00451: %w", err)
tl_messages_filter_gen.go#L1805: return fmt.Errorf("can't decode inputMessagesFilterPinned#1bb00451 to nil")
tl_messages_filter_gen.go#L1882: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1889: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1896: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1903: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1910: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1917: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1924: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1931: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1938: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1945: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1952: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1959: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1966: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1973: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1980: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1987: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1994: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
tl_messages_filter_gen.go#L1998: return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", bin.NewUnexpectedID(id))
tl_messages_filter_gen.go#L2010: return fmt.Errorf("unable to decode MessagesFilterBox to nil")
tl_messages_filter_gen.go#L2014: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_filter_gen.go#L2023: return fmt.Errorf("unable to encode MessagesFilterClass as nil")
tl_messages_forward_messages_gen.go#L200: return fmt.Errorf("can't encode messages.forwardMessages#d9fee60e as nil")
tl_messages_forward_messages_gen.go#L209: return fmt.Errorf("can't encode messages.forwardMessages#d9fee60e as nil")
tl_messages_forward_messages_gen.go#L224: return fmt.Errorf("unable to encode messages.forwardMessages#d9fee60e: field flags: %w", err)
tl_messages_forward_messages_gen.go#L227: return fmt.Errorf("unable to encode messages.forwardMessages#d9fee60e: field from_peer is nil")
tl_messages_forward_messages_gen.go#L230: return fmt.Errorf("unable to encode messages.forwardMessages#d9fee60e: field from_peer: %w", err)
tl_messages_forward_messages_gen.go#L241: return fmt.Errorf("unable to encode messages.forwardMessages#d9fee60e: field to_peer is nil")
tl_messages_forward_messages_gen.go#L244: return fmt.Errorf("unable to encode messages.forwardMessages#d9fee60e: field to_peer: %w", err)
tl_messages_forward_messages_gen.go#L338: return fmt.Errorf("can't decode messages.forwardMessages#d9fee60e to nil")
tl_messages_forward_messages_gen.go#L341: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: %w", err)
tl_messages_forward_messages_gen.go#L349: return fmt.Errorf("can't decode messages.forwardMessages#d9fee60e to nil")
tl_messages_forward_messages_gen.go#L353: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: field flags: %w", err)
tl_messages_forward_messages_gen.go#L362: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: field from_peer: %w", err)
tl_messages_forward_messages_gen.go#L369: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: field id: %w", err)
tl_messages_forward_messages_gen.go#L374: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: field id: %w", err)
tl_messages_forward_messages_gen.go#L382: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: field random_id: %w", err)
tl_messages_forward_messages_gen.go#L387: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: field random_id: %w", err)
tl_messages_forward_messages_gen.go#L395: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: field to_peer: %w", err)
tl_messages_forward_messages_gen.go#L402: return fmt.Errorf("unable to decode messages.forwardMessages#d9fee60e: field schedule_date: %w", err)
tl_messages_found_sticker_sets_gen.go#L88: return fmt.Errorf("can't encode messages.foundStickerSetsNotModified#d54b65d as nil")
tl_messages_found_sticker_sets_gen.go#L97: return fmt.Errorf("can't encode messages.foundStickerSetsNotModified#d54b65d as nil")
tl_messages_found_sticker_sets_gen.go#L105: return fmt.Errorf("can't decode messages.foundStickerSetsNotModified#d54b65d to nil")
tl_messages_found_sticker_sets_gen.go#L108: return fmt.Errorf("unable to decode messages.foundStickerSetsNotModified#d54b65d: %w", err)
tl_messages_found_sticker_sets_gen.go#L116: return fmt.Errorf("can't decode messages.foundStickerSetsNotModified#d54b65d to nil")
tl_messages_found_sticker_sets_gen.go#L221: return fmt.Errorf("can't encode messages.foundStickerSets#5108d648 as nil")
tl_messages_found_sticker_sets_gen.go#L230: return fmt.Errorf("can't encode messages.foundStickerSets#5108d648 as nil")
tl_messages_found_sticker_sets_gen.go#L236: return fmt.Errorf("unable to encode messages.foundStickerSets#5108d648: field sets element with index %d is nil", idx)
tl_messages_found_sticker_sets_gen.go#L239: return fmt.Errorf("unable to encode messages.foundStickerSets#5108d648: field sets element with index %d: %w", idx, err)
tl_messages_found_sticker_sets_gen.go#L263: return fmt.Errorf("can't decode messages.foundStickerSets#5108d648 to nil")
tl_messages_found_sticker_sets_gen.go#L266: return fmt.Errorf("unable to decode messages.foundStickerSets#5108d648: %w", err)
tl_messages_found_sticker_sets_gen.go#L274: return fmt.Errorf("can't decode messages.foundStickerSets#5108d648 to nil")
tl_messages_found_sticker_sets_gen.go#L279: return fmt.Errorf("unable to decode messages.foundStickerSets#5108d648: field hash: %w", err)
tl_messages_found_sticker_sets_gen.go#L286: return fmt.Errorf("unable to decode messages.foundStickerSets#5108d648: field sets: %w", err)
tl_messages_found_sticker_sets_gen.go#L291: return fmt.Errorf("unable to decode messages.foundStickerSets#5108d648: field sets: %w", err)
tl_messages_found_sticker_sets_gen.go#L369: return nil, fmt.Errorf("unable to decode MessagesFoundStickerSetsClass: %w", err)
tl_messages_found_sticker_sets_gen.go#L376: return nil, fmt.Errorf("unable to decode MessagesFoundStickerSetsClass: %w", err)
tl_messages_found_sticker_sets_gen.go#L380: return nil, fmt.Errorf("unable to decode MessagesFoundStickerSetsClass: %w", bin.NewUnexpectedID(id))
tl_messages_found_sticker_sets_gen.go#L392: return fmt.Errorf("unable to decode MessagesFoundStickerSetsBox to nil")
tl_messages_found_sticker_sets_gen.go#L396: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_found_sticker_sets_gen.go#L405: return fmt.Errorf("unable to encode MessagesFoundStickerSetsClass as nil")
tl_messages_get_admins_with_invites_gen.go#L104: return fmt.Errorf("can't encode messages.getAdminsWithInvites#3920e6ef as nil")
tl_messages_get_admins_with_invites_gen.go#L113: return fmt.Errorf("can't encode messages.getAdminsWithInvites#3920e6ef as nil")
tl_messages_get_admins_with_invites_gen.go#L116: return fmt.Errorf("unable to encode messages.getAdminsWithInvites#3920e6ef: field peer is nil")
tl_messages_get_admins_with_invites_gen.go#L119: return fmt.Errorf("unable to encode messages.getAdminsWithInvites#3920e6ef: field peer: %w", err)
tl_messages_get_admins_with_invites_gen.go#L132: return fmt.Errorf("can't decode messages.getAdminsWithInvites#3920e6ef to nil")
tl_messages_get_admins_with_invites_gen.go#L135: return fmt.Errorf("unable to decode messages.getAdminsWithInvites#3920e6ef: %w", err)
tl_messages_get_admins_with_invites_gen.go#L143: return fmt.Errorf("can't decode messages.getAdminsWithInvites#3920e6ef to nil")
tl_messages_get_admins_with_invites_gen.go#L148: return fmt.Errorf("unable to decode messages.getAdminsWithInvites#3920e6ef: field peer: %w", err)
tl_messages_get_all_chats_gen.go#L105: return fmt.Errorf("can't encode messages.getAllChats#eba80ff0 as nil")
tl_messages_get_all_chats_gen.go#L114: return fmt.Errorf("can't encode messages.getAllChats#eba80ff0 as nil")
tl_messages_get_all_chats_gen.go#L131: return fmt.Errorf("can't decode messages.getAllChats#eba80ff0 to nil")
tl_messages_get_all_chats_gen.go#L134: return fmt.Errorf("unable to decode messages.getAllChats#eba80ff0: %w", err)
tl_messages_get_all_chats_gen.go#L142: return fmt.Errorf("can't decode messages.getAllChats#eba80ff0 to nil")
tl_messages_get_all_chats_gen.go#L147: return fmt.Errorf("unable to decode messages.getAllChats#eba80ff0: field except_ids: %w", err)
tl_messages_get_all_chats_gen.go#L152: return fmt.Errorf("unable to decode messages.getAllChats#eba80ff0: field except_ids: %w", err)
tl_messages_get_all_drafts_gen.go#L91: return fmt.Errorf("can't encode messages.getAllDrafts#6a3f8d65 as nil")
tl_messages_get_all_drafts_gen.go#L100: return fmt.Errorf("can't encode messages.getAllDrafts#6a3f8d65 as nil")
tl_messages_get_all_drafts_gen.go#L108: return fmt.Errorf("can't decode messages.getAllDrafts#6a3f8d65 to nil")
tl_messages_get_all_drafts_gen.go#L111: return fmt.Errorf("unable to decode messages.getAllDrafts#6a3f8d65: %w", err)
tl_messages_get_all_drafts_gen.go#L119: return fmt.Errorf("can't decode messages.getAllDrafts#6a3f8d65 to nil")
tl_messages_get_all_stickers_gen.go#L108: return fmt.Errorf("can't encode messages.getAllStickers#1c9618b1 as nil")
tl_messages_get_all_stickers_gen.go#L117: return fmt.Errorf("can't encode messages.getAllStickers#1c9618b1 as nil")
tl_messages_get_all_stickers_gen.go#L131: return fmt.Errorf("can't decode messages.getAllStickers#1c9618b1 to nil")
tl_messages_get_all_stickers_gen.go#L134: return fmt.Errorf("unable to decode messages.getAllStickers#1c9618b1: %w", err)
tl_messages_get_all_stickers_gen.go#L142: return fmt.Errorf("can't decode messages.getAllStickers#1c9618b1 to nil")
tl_messages_get_all_stickers_gen.go#L147: return fmt.Errorf("unable to decode messages.getAllStickers#1c9618b1: field hash: %w", err)
tl_messages_get_archived_stickers_gen.go#L142: return fmt.Errorf("can't encode messages.getArchivedStickers#57f17692 as nil")
tl_messages_get_archived_stickers_gen.go#L151: return fmt.Errorf("can't encode messages.getArchivedStickers#57f17692 as nil")
tl_messages_get_archived_stickers_gen.go#L157: return fmt.Errorf("unable to encode messages.getArchivedStickers#57f17692: field flags: %w", err)
tl_messages_get_archived_stickers_gen.go#L193: return fmt.Errorf("can't decode messages.getArchivedStickers#57f17692 to nil")
tl_messages_get_archived_stickers_gen.go#L196: return fmt.Errorf("unable to decode messages.getArchivedStickers#57f17692: %w", err)
tl_messages_get_archived_stickers_gen.go#L204: return fmt.Errorf("can't decode messages.getArchivedStickers#57f17692 to nil")
tl_messages_get_archived_stickers_gen.go#L208: return fmt.Errorf("unable to decode messages.getArchivedStickers#57f17692: field flags: %w", err)
tl_messages_get_archived_stickers_gen.go#L215: return fmt.Errorf("unable to decode messages.getArchivedStickers#57f17692: field offset_id: %w", err)
tl_messages_get_archived_stickers_gen.go#L222: return fmt.Errorf("unable to decode messages.getArchivedStickers#57f17692: field limit: %w", err)
tl_messages_get_attached_stickers_gen.go#L105: return fmt.Errorf("can't encode messages.getAttachedStickers#cc5b67cc as nil")
tl_messages_get_attached_stickers_gen.go#L114: return fmt.Errorf("can't encode messages.getAttachedStickers#cc5b67cc as nil")
tl_messages_get_attached_stickers_gen.go#L117: return fmt.Errorf("unable to encode messages.getAttachedStickers#cc5b67cc: field media is nil")
tl_messages_get_attached_stickers_gen.go#L120: return fmt.Errorf("unable to encode messages.getAttachedStickers#cc5b67cc: field media: %w", err)
tl_messages_get_attached_stickers_gen.go#L133: return fmt.Errorf("can't decode messages.getAttachedStickers#cc5b67cc to nil")
tl_messages_get_attached_stickers_gen.go#L136: return fmt.Errorf("unable to decode messages.getAttachedStickers#cc5b67cc: %w", err)
tl_messages_get_attached_stickers_gen.go#L144: return fmt.Errorf("can't decode messages.getAttachedStickers#cc5b67cc to nil")
tl_messages_get_attached_stickers_gen.go#L149: return fmt.Errorf("unable to decode messages.getAttachedStickers#cc5b67cc: field media: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L175: return fmt.Errorf("can't encode messages.getBotCallbackAnswer#9342ca07 as nil")
tl_messages_get_bot_callback_answer_gen.go#L184: return fmt.Errorf("can't encode messages.getBotCallbackAnswer#9342ca07 as nil")
tl_messages_get_bot_callback_answer_gen.go#L196: return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field flags: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L199: return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field peer is nil")
tl_messages_get_bot_callback_answer_gen.go#L202: return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field peer: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L210: return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field password is nil")
tl_messages_get_bot_callback_answer_gen.go#L213: return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field password: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L287: return fmt.Errorf("can't decode messages.getBotCallbackAnswer#9342ca07 to nil")
tl_messages_get_bot_callback_answer_gen.go#L290: return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L298: return fmt.Errorf("can't decode messages.getBotCallbackAnswer#9342ca07 to nil")
tl_messages_get_bot_callback_answer_gen.go#L302: return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field flags: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L309: return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field peer: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L316: return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field msg_id: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L323: return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field data: %w", err)
tl_messages_get_bot_callback_answer_gen.go#L330: return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field password: %w", err)
tl_messages_get_chat_invite_importers_gen.go#L148: return fmt.Errorf("can't encode messages.getChatInviteImporters#26fb7289 as nil")
tl_messages_get_chat_invite_importers_gen.go#L157: return fmt.Errorf("can't encode messages.getChatInviteImporters#26fb7289 as nil")
tl_messages_get_chat_invite_importers_gen.go#L160: return fmt.Errorf("unable to encode messages.getChatInviteImporters#26fb7289: field peer is nil")
tl_messages_get_chat_invite_importers_gen.go#L163: return fmt.Errorf("unable to encode messages.getChatInviteImporters#26fb7289: field peer: %w", err)
tl_messages_get_chat_invite_importers_gen.go#L168: return fmt.Errorf("unable to encode messages.getChatInviteImporters#26fb7289: field offset_user is nil")
tl_messages_get_chat_invite_importers_gen.go#L171: return fmt.Errorf("unable to encode messages.getChatInviteImporters#26fb7289: field offset_user: %w", err)
tl_messages_get_chat_invite_importers_gen.go#L205: return fmt.Errorf("can't decode messages.getChatInviteImporters#26fb7289 to nil")
tl_messages_get_chat_invite_importers_gen.go#L208: return fmt.Errorf("unable to decode messages.getChatInviteImporters#26fb7289: %w", err)
tl_messages_get_chat_invite_importers_gen.go#L216: return fmt.Errorf("can't decode messages.getChatInviteImporters#26fb7289 to nil")
tl_messages_get_chat_invite_importers_gen.go#L221: return fmt.Errorf("unable to decode messages.getChatInviteImporters#26fb7289: field peer: %w", err)
tl_messages_get_chat_invite_importers_gen.go#L228: return fmt.Errorf("unable to decode messages.getChatInviteImporters#26fb7289: field link: %w", err)
tl_messages_get_chat_invite_importers_gen.go#L235: return fmt.Errorf("unable to decode messages.getChatInviteImporters#26fb7289: field offset_date: %w", err)
tl_messages_get_chat_invite_importers_gen.go#L242: return fmt.Errorf("unable to decode messages.getChatInviteImporters#26fb7289: field offset_user: %w", err)
tl_messages_get_chat_invite_importers_gen.go#L249: return fmt.Errorf("unable to decode messages.getChatInviteImporters#26fb7289: field limit: %w", err)
tl_messages_get_chats_gen.go#L105: return fmt.Errorf("can't encode messages.getChats#3c6aa187 as nil")
tl_messages_get_chats_gen.go#L114: return fmt.Errorf("can't encode messages.getChats#3c6aa187 as nil")
tl_messages_get_chats_gen.go#L131: return fmt.Errorf("can't decode messages.getChats#3c6aa187 to nil")
tl_messages_get_chats_gen.go#L134: return fmt.Errorf("unable to decode messages.getChats#3c6aa187: %w", err)
tl_messages_get_chats_gen.go#L142: return fmt.Errorf("can't decode messages.getChats#3c6aa187 to nil")
tl_messages_get_chats_gen.go#L147: return fmt.Errorf("unable to decode messages.getChats#3c6aa187: field id: %w", err)
tl_messages_get_chats_gen.go#L152: return fmt.Errorf("unable to decode messages.getChats#3c6aa187: field id: %w", err)
tl_messages_get_common_chats_gen.go#L133: return fmt.Errorf("can't encode messages.getCommonChats#d0a48c4 as nil")
tl_messages_get_common_chats_gen.go#L142: return fmt.Errorf("can't encode messages.getCommonChats#d0a48c4 as nil")
tl_messages_get_common_chats_gen.go#L145: return fmt.Errorf("unable to encode messages.getCommonChats#d0a48c4: field user_id is nil")
tl_messages_get_common_chats_gen.go#L148: return fmt.Errorf("unable to encode messages.getCommonChats#d0a48c4: field user_id: %w", err)
tl_messages_get_common_chats_gen.go#L173: return fmt.Errorf("can't decode messages.getCommonChats#d0a48c4 to nil")
tl_messages_get_common_chats_gen.go#L176: return fmt.Errorf("unable to decode messages.getCommonChats#d0a48c4: %w", err)
tl_messages_get_common_chats_gen.go#L184: return fmt.Errorf("can't decode messages.getCommonChats#d0a48c4 to nil")
tl_messages_get_common_chats_gen.go#L189: return fmt.Errorf("unable to decode messages.getCommonChats#d0a48c4: field user_id: %w", err)
tl_messages_get_common_chats_gen.go#L196: return fmt.Errorf("unable to decode messages.getCommonChats#d0a48c4: field max_id: %w", err)
tl_messages_get_common_chats_gen.go#L203: return fmt.Errorf("unable to decode messages.getCommonChats#d0a48c4: field limit: %w", err)
tl_messages_get_dh_config_gen.go#L120: return fmt.Errorf("can't encode messages.getDhConfig#26cf8950 as nil")
tl_messages_get_dh_config_gen.go#L129: return fmt.Errorf("can't encode messages.getDhConfig#26cf8950 as nil")
tl_messages_get_dh_config_gen.go#L149: return fmt.Errorf("can't decode messages.getDhConfig#26cf8950 to nil")
tl_messages_get_dh_config_gen.go#L152: return fmt.Errorf("unable to decode messages.getDhConfig#26cf8950: %w", err)
tl_messages_get_dh_config_gen.go#L160: return fmt.Errorf("can't decode messages.getDhConfig#26cf8950 to nil")
tl_messages_get_dh_config_gen.go#L165: return fmt.Errorf("unable to decode messages.getDhConfig#26cf8950: field version: %w", err)
tl_messages_get_dh_config_gen.go#L172: return fmt.Errorf("unable to decode messages.getDhConfig#26cf8950: field random_length: %w", err)
tl_messages_get_dialog_filters_gen.go#L91: return fmt.Errorf("can't encode messages.getDialogFilters#f19ed96d as nil")
tl_messages_get_dialog_filters_gen.go#L100: return fmt.Errorf("can't encode messages.getDialogFilters#f19ed96d as nil")
tl_messages_get_dialog_filters_gen.go#L108: return fmt.Errorf("can't decode messages.getDialogFilters#f19ed96d to nil")
tl_messages_get_dialog_filters_gen.go#L111: return fmt.Errorf("unable to decode messages.getDialogFilters#f19ed96d: %w", err)
tl_messages_get_dialog_filters_gen.go#L119: return fmt.Errorf("can't decode messages.getDialogFilters#f19ed96d to nil")
tl_messages_get_dialog_unread_marks_gen.go#L88: return fmt.Errorf("can't encode messages.getDialogUnreadMarks#22e24e22 as nil")
tl_messages_get_dialog_unread_marks_gen.go#L97: return fmt.Errorf("can't encode messages.getDialogUnreadMarks#22e24e22 as nil")
tl_messages_get_dialog_unread_marks_gen.go#L105: return fmt.Errorf("can't decode messages.getDialogUnreadMarks#22e24e22 to nil")
tl_messages_get_dialog_unread_marks_gen.go#L108: return fmt.Errorf("unable to decode messages.getDialogUnreadMarks#22e24e22: %w", err)
tl_messages_get_dialog_unread_marks_gen.go#L116: return fmt.Errorf("can't decode messages.getDialogUnreadMarks#22e24e22 to nil")
tl_messages_get_dialogs_gen.go#L201: return fmt.Errorf("can't encode messages.getDialogs#a0ee3b73 as nil")
tl_messages_get_dialogs_gen.go#L210: return fmt.Errorf("can't encode messages.getDialogs#a0ee3b73 as nil")
tl_messages_get_dialogs_gen.go#L219: return fmt.Errorf("unable to encode messages.getDialogs#a0ee3b73: field flags: %w", err)
tl_messages_get_dialogs_gen.go#L227: return fmt.Errorf("unable to encode messages.getDialogs#a0ee3b73: field offset_peer is nil")
tl_messages_get_dialogs_gen.go#L230: return fmt.Errorf("unable to encode messages.getDialogs#a0ee3b73: field offset_peer: %w", err)
tl_messages_get_dialogs_gen.go#L296: return fmt.Errorf("can't decode messages.getDialogs#a0ee3b73 to nil")
tl_messages_get_dialogs_gen.go#L299: return fmt.Errorf("unable to decode messages.getDialogs#a0ee3b73: %w", err)
tl_messages_get_dialogs_gen.go#L307: return fmt.Errorf("can't decode messages.getDialogs#a0ee3b73 to nil")
tl_messages_get_dialogs_gen.go#L311: return fmt.Errorf("unable to decode messages.getDialogs#a0ee3b73: field flags: %w", err)
tl_messages_get_dialogs_gen.go#L318: return fmt.Errorf("unable to decode messages.getDialogs#a0ee3b73: field folder_id: %w", err)
tl_messages_get_dialogs_gen.go#L325: return fmt.Errorf("unable to decode messages.getDialogs#a0ee3b73: field offset_date: %w", err)
tl_messages_get_dialogs_gen.go#L332: return fmt.Errorf("unable to decode messages.getDialogs#a0ee3b73: field offset_id: %w", err)
tl_messages_get_dialogs_gen.go#L339: return fmt.Errorf("unable to decode messages.getDialogs#a0ee3b73: field offset_peer: %w", err)
tl_messages_get_dialogs_gen.go#L346: return fmt.Errorf("unable to decode messages.getDialogs#a0ee3b73: field limit: %w", err)
tl_messages_get_dialogs_gen.go#L353: return fmt.Errorf("unable to decode messages.getDialogs#a0ee3b73: field hash: %w", err)
tl_messages_get_discussion_message_gen.go#L124: return fmt.Errorf("can't encode messages.getDiscussionMessage#446972fd as nil")
tl_messages_get_discussion_message_gen.go#L133: return fmt.Errorf("can't encode messages.getDiscussionMessage#446972fd as nil")
tl_messages_get_discussion_message_gen.go#L136: return fmt.Errorf("unable to encode messages.getDiscussionMessage#446972fd: field peer is nil")
tl_messages_get_discussion_message_gen.go#L139: return fmt.Errorf("unable to encode messages.getDiscussionMessage#446972fd: field peer: %w", err)
tl_messages_get_discussion_message_gen.go#L158: return fmt.Errorf("can't decode messages.getDiscussionMessage#446972fd to nil")
tl_messages_get_discussion_message_gen.go#L161: return fmt.Errorf("unable to decode messages.getDiscussionMessage#446972fd: %w", err)
tl_messages_get_discussion_message_gen.go#L169: return fmt.Errorf("can't decode messages.getDiscussionMessage#446972fd to nil")
tl_messages_get_discussion_message_gen.go#L174: return fmt.Errorf("unable to decode messages.getDiscussionMessage#446972fd: field peer: %w", err)
tl_messages_get_discussion_message_gen.go#L181: return fmt.Errorf("unable to decode messages.getDiscussionMessage#446972fd: field msg_id: %w", err)
tl_messages_get_document_by_hash_gen.go#L127: return fmt.Errorf("can't encode messages.getDocumentByHash#338e2464 as nil")
tl_messages_get_document_by_hash_gen.go#L136: return fmt.Errorf("can't encode messages.getDocumentByHash#338e2464 as nil")
tl_messages_get_document_by_hash_gen.go#L162: return fmt.Errorf("can't decode messages.getDocumentByHash#338e2464 to nil")
tl_messages_get_document_by_hash_gen.go#L165: return fmt.Errorf("unable to decode messages.getDocumentByHash#338e2464: %w", err)
tl_messages_get_document_by_hash_gen.go#L173: return fmt.Errorf("can't decode messages.getDocumentByHash#338e2464 to nil")
tl_messages_get_document_by_hash_gen.go#L178: return fmt.Errorf("unable to decode messages.getDocumentByHash#338e2464: field sha256: %w", err)
tl_messages_get_document_by_hash_gen.go#L185: return fmt.Errorf("unable to decode messages.getDocumentByHash#338e2464: field size: %w", err)
tl_messages_get_document_by_hash_gen.go#L192: return fmt.Errorf("unable to decode messages.getDocumentByHash#338e2464: field mime_type: %w", err)
tl_messages_get_emoji_keywords_difference_gen.go#L116: return fmt.Errorf("can't encode messages.getEmojiKeywordsDifference#1508b6af as nil")
tl_messages_get_emoji_keywords_difference_gen.go#L125: return fmt.Errorf("can't encode messages.getEmojiKeywordsDifference#1508b6af as nil")
tl_messages_get_emoji_keywords_difference_gen.go#L145: return fmt.Errorf("can't decode messages.getEmojiKeywordsDifference#1508b6af to nil")
tl_messages_get_emoji_keywords_difference_gen.go#L148: return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: %w", err)
tl_messages_get_emoji_keywords_difference_gen.go#L156: return fmt.Errorf("can't decode messages.getEmojiKeywordsDifference#1508b6af to nil")
tl_messages_get_emoji_keywords_difference_gen.go#L161: return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: field lang_code: %w", err)
tl_messages_get_emoji_keywords_difference_gen.go#L168: return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: field from_version: %w", err)
tl_messages_get_emoji_keywords_gen.go#L105: return fmt.Errorf("can't encode messages.getEmojiKeywords#35a0e062 as nil")
tl_messages_get_emoji_keywords_gen.go#L114: return fmt.Errorf("can't encode messages.getEmojiKeywords#35a0e062 as nil")
tl_messages_get_emoji_keywords_gen.go#L128: return fmt.Errorf("can't decode messages.getEmojiKeywords#35a0e062 to nil")
tl_messages_get_emoji_keywords_gen.go#L131: return fmt.Errorf("unable to decode messages.getEmojiKeywords#35a0e062: %w", err)
tl_messages_get_emoji_keywords_gen.go#L139: return fmt.Errorf("can't decode messages.getEmojiKeywords#35a0e062 to nil")
tl_messages_get_emoji_keywords_gen.go#L144: return fmt.Errorf("unable to decode messages.getEmojiKeywords#35a0e062: field lang_code: %w", err)
tl_messages_get_emoji_keywords_languages_gen.go#L105: return fmt.Errorf("can't encode messages.getEmojiKeywordsLanguages#4e9963b2 as nil")
tl_messages_get_emoji_keywords_languages_gen.go#L114: return fmt.Errorf("can't encode messages.getEmojiKeywordsLanguages#4e9963b2 as nil")
tl_messages_get_emoji_keywords_languages_gen.go#L131: return fmt.Errorf("can't decode messages.getEmojiKeywordsLanguages#4e9963b2 to nil")
tl_messages_get_emoji_keywords_languages_gen.go#L134: return fmt.Errorf("unable to decode messages.getEmojiKeywordsLanguages#4e9963b2: %w", err)
tl_messages_get_emoji_keywords_languages_gen.go#L142: return fmt.Errorf("can't decode messages.getEmojiKeywordsLanguages#4e9963b2 to nil")
tl_messages_get_emoji_keywords_languages_gen.go#L147: return fmt.Errorf("unable to decode messages.getEmojiKeywordsLanguages#4e9963b2: field lang_codes: %w", err)
tl_messages_get_emoji_keywords_languages_gen.go#L152: return fmt.Errorf("unable to decode messages.getEmojiKeywordsLanguages#4e9963b2: field lang_codes: %w", err)
tl_messages_get_emoji_url_gen.go#L107: return fmt.Errorf("can't encode messages.getEmojiURL#d5b10c26 as nil")
tl_messages_get_emoji_url_gen.go#L116: return fmt.Errorf("can't encode messages.getEmojiURL#d5b10c26 as nil")
tl_messages_get_emoji_url_gen.go#L130: return fmt.Errorf("can't decode messages.getEmojiURL#d5b10c26 to nil")
tl_messages_get_emoji_url_gen.go#L133: return fmt.Errorf("unable to decode messages.getEmojiURL#d5b10c26: %w", err)
tl_messages_get_emoji_url_gen.go#L141: return fmt.Errorf("can't decode messages.getEmojiURL#d5b10c26 to nil")
tl_messages_get_emoji_url_gen.go#L146: return fmt.Errorf("unable to decode messages.getEmojiURL#d5b10c26: field lang_code: %w", err)
tl_messages_get_exported_chat_invite_gen.go#L115: return fmt.Errorf("can't encode messages.getExportedChatInvite#73746f5c as nil")
tl_messages_get_exported_chat_invite_gen.go#L124: return fmt.Errorf("can't encode messages.getExportedChatInvite#73746f5c as nil")
tl_messages_get_exported_chat_invite_gen.go#L127: return fmt.Errorf("unable to encode messages.getExportedChatInvite#73746f5c: field peer is nil")
tl_messages_get_exported_chat_invite_gen.go#L130: return fmt.Errorf("unable to encode messages.getExportedChatInvite#73746f5c: field peer: %w", err)
tl_messages_get_exported_chat_invite_gen.go#L149: return fmt.Errorf("can't decode messages.getExportedChatInvite#73746f5c to nil")
tl_messages_get_exported_chat_invite_gen.go#L152: return fmt.Errorf("unable to decode messages.getExportedChatInvite#73746f5c: %w", err)
tl_messages_get_exported_chat_invite_gen.go#L160: return fmt.Errorf("can't decode messages.getExportedChatInvite#73746f5c to nil")
tl_messages_get_exported_chat_invite_gen.go#L165: return fmt.Errorf("unable to decode messages.getExportedChatInvite#73746f5c: field peer: %w", err)
tl_messages_get_exported_chat_invite_gen.go#L172: return fmt.Errorf("unable to decode messages.getExportedChatInvite#73746f5c: field link: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L177: return fmt.Errorf("can't encode messages.getExportedChatInvites#a2b5a3f6 as nil")
tl_messages_get_exported_chat_invites_gen.go#L186: return fmt.Errorf("can't encode messages.getExportedChatInvites#a2b5a3f6 as nil")
tl_messages_get_exported_chat_invites_gen.go#L198: return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field flags: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L201: return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field peer is nil")
tl_messages_get_exported_chat_invites_gen.go#L204: return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field peer: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L207: return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field admin_id is nil")
tl_messages_get_exported_chat_invites_gen.go#L210: return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field admin_id: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L286: return fmt.Errorf("can't decode messages.getExportedChatInvites#a2b5a3f6 to nil")
tl_messages_get_exported_chat_invites_gen.go#L289: return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L297: return fmt.Errorf("can't decode messages.getExportedChatInvites#a2b5a3f6 to nil")
tl_messages_get_exported_chat_invites_gen.go#L301: return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field flags: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L308: return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field peer: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L315: return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field admin_id: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L322: return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field offset_date: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L329: return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field offset_link: %w", err)
tl_messages_get_exported_chat_invites_gen.go#L336: return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field limit: %w", err)
tl_messages_get_faved_stickers_gen.go#L108: return fmt.Errorf("can't encode messages.getFavedStickers#21ce0b0e as nil")
tl_messages_get_faved_stickers_gen.go#L117: return fmt.Errorf("can't encode messages.getFavedStickers#21ce0b0e as nil")
tl_messages_get_faved_stickers_gen.go#L131: return fmt.Errorf("can't decode messages.getFavedStickers#21ce0b0e to nil")
tl_messages_get_faved_stickers_gen.go#L134: return fmt.Errorf("unable to decode messages.getFavedStickers#21ce0b0e: %w", err)
tl_messages_get_faved_stickers_gen.go#L142: return fmt.Errorf("can't decode messages.getFavedStickers#21ce0b0e to nil")
tl_messages_get_faved_stickers_gen.go#L147: return fmt.Errorf("unable to decode messages.getFavedStickers#21ce0b0e: field hash: %w", err)
tl_messages_get_featured_stickers_gen.go#L108: return fmt.Errorf("can't encode messages.getFeaturedStickers#2dacca4f as nil")
tl_messages_get_featured_stickers_gen.go#L117: return fmt.Errorf("can't encode messages.getFeaturedStickers#2dacca4f as nil")
tl_messages_get_featured_stickers_gen.go#L131: return fmt.Errorf("can't decode messages.getFeaturedStickers#2dacca4f to nil")
tl_messages_get_featured_stickers_gen.go#L134: return fmt.Errorf("unable to decode messages.getFeaturedStickers#2dacca4f: %w", err)
tl_messages_get_featured_stickers_gen.go#L142: return fmt.Errorf("can't decode messages.getFeaturedStickers#2dacca4f to nil")
tl_messages_get_featured_stickers_gen.go#L147: return fmt.Errorf("unable to decode messages.getFeaturedStickers#2dacca4f: field hash: %w", err)
tl_messages_get_full_chat_gen.go#L105: return fmt.Errorf("can't encode messages.getFullChat#3b831c66 as nil")
tl_messages_get_full_chat_gen.go#L114: return fmt.Errorf("can't encode messages.getFullChat#3b831c66 as nil")
tl_messages_get_full_chat_gen.go#L128: return fmt.Errorf("can't decode messages.getFullChat#3b831c66 to nil")
tl_messages_get_full_chat_gen.go#L131: return fmt.Errorf("unable to decode messages.getFullChat#3b831c66: %w", err)
tl_messages_get_full_chat_gen.go#L139: return fmt.Errorf("can't decode messages.getFullChat#3b831c66 to nil")
tl_messages_get_full_chat_gen.go#L144: return fmt.Errorf("unable to decode messages.getFullChat#3b831c66: field chat_id: %w", err)
tl_messages_get_game_high_scores_gen.go#L127: return fmt.Errorf("can't encode messages.getGameHighScores#e822649d as nil")
tl_messages_get_game_high_scores_gen.go#L136: return fmt.Errorf("can't encode messages.getGameHighScores#e822649d as nil")
tl_messages_get_game_high_scores_gen.go#L139: return fmt.Errorf("unable to encode messages.getGameHighScores#e822649d: field peer is nil")
tl_messages_get_game_high_scores_gen.go#L142: return fmt.Errorf("unable to encode messages.getGameHighScores#e822649d: field peer: %w", err)
tl_messages_get_game_high_scores_gen.go#L146: return fmt.Errorf("unable to encode messages.getGameHighScores#e822649d: field user_id is nil")
tl_messages_get_game_high_scores_gen.go#L149: return fmt.Errorf("unable to encode messages.getGameHighScores#e822649d: field user_id: %w", err)
tl_messages_get_game_high_scores_gen.go#L172: return fmt.Errorf("can't decode messages.getGameHighScores#e822649d to nil")
tl_messages_get_game_high_scores_gen.go#L175: return fmt.Errorf("unable to decode messages.getGameHighScores#e822649d: %w", err)
tl_messages_get_game_high_scores_gen.go#L183: return fmt.Errorf("can't decode messages.getGameHighScores#e822649d to nil")
tl_messages_get_game_high_scores_gen.go#L188: return fmt.Errorf("unable to decode messages.getGameHighScores#e822649d: field peer: %w", err)
tl_messages_get_game_high_scores_gen.go#L195: return fmt.Errorf("unable to decode messages.getGameHighScores#e822649d: field id: %w", err)
tl_messages_get_game_high_scores_gen.go#L202: return fmt.Errorf("unable to decode messages.getGameHighScores#e822649d: field user_id: %w", err)
tl_messages_get_history_gen.go#L187: return fmt.Errorf("can't encode messages.getHistory#dcbb8260 as nil")
tl_messages_get_history_gen.go#L196: return fmt.Errorf("can't encode messages.getHistory#dcbb8260 as nil")
tl_messages_get_history_gen.go#L199: return fmt.Errorf("unable to encode messages.getHistory#dcbb8260: field peer is nil")
tl_messages_get_history_gen.go#L202: return fmt.Errorf("unable to encode messages.getHistory#dcbb8260: field peer: %w", err)
tl_messages_get_history_gen.go#L257: return fmt.Errorf("can't decode messages.getHistory#dcbb8260 to nil")
tl_messages_get_history_gen.go#L260: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: %w", err)
tl_messages_get_history_gen.go#L268: return fmt.Errorf("can't decode messages.getHistory#dcbb8260 to nil")
tl_messages_get_history_gen.go#L273: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: field peer: %w", err)
tl_messages_get_history_gen.go#L280: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: field offset_id: %w", err)
tl_messages_get_history_gen.go#L287: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: field offset_date: %w", err)
tl_messages_get_history_gen.go#L294: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: field add_offset: %w", err)
tl_messages_get_history_gen.go#L301: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: field limit: %w", err)
tl_messages_get_history_gen.go#L308: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: field max_id: %w", err)
tl_messages_get_history_gen.go#L315: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: field min_id: %w", err)
tl_messages_get_history_gen.go#L322: return fmt.Errorf("unable to decode messages.getHistory#dcbb8260: field hash: %w", err)
tl_messages_get_inline_bot_results_gen.go#L163: return fmt.Errorf("can't encode messages.getInlineBotResults#514e999d as nil")
tl_messages_get_inline_bot_results_gen.go#L172: return fmt.Errorf("can't encode messages.getInlineBotResults#514e999d as nil")
tl_messages_get_inline_bot_results_gen.go#L178: return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field flags: %w", err)
tl_messages_get_inline_bot_results_gen.go#L181: return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field bot is nil")
tl_messages_get_inline_bot_results_gen.go#L184: return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field bot: %w", err)
tl_messages_get_inline_bot_results_gen.go#L187: return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field peer is nil")
tl_messages_get_inline_bot_results_gen.go#L190: return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field peer: %w", err)
tl_messages_get_inline_bot_results_gen.go#L194: return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field geo_point is nil")
tl_messages_get_inline_bot_results_gen.go#L197: return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field geo_point: %w", err)
tl_messages_get_inline_bot_results_gen.go#L252: return fmt.Errorf("can't decode messages.getInlineBotResults#514e999d to nil")
tl_messages_get_inline_bot_results_gen.go#L255: return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: %w", err)
tl_messages_get_inline_bot_results_gen.go#L263: return fmt.Errorf("can't decode messages.getInlineBotResults#514e999d to nil")
tl_messages_get_inline_bot_results_gen.go#L267: return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field flags: %w", err)
tl_messages_get_inline_bot_results_gen.go#L273: return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field bot: %w", err)
tl_messages_get_inline_bot_results_gen.go#L280: return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field peer: %w", err)
tl_messages_get_inline_bot_results_gen.go#L287: return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field geo_point: %w", err)
tl_messages_get_inline_bot_results_gen.go#L294: return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field query: %w", err)
tl_messages_get_inline_bot_results_gen.go#L301: return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field offset: %w", err)
tl_messages_get_inline_game_high_scores_gen.go#L116: return fmt.Errorf("can't encode messages.getInlineGameHighScores#f635e1b as nil")
tl_messages_get_inline_game_high_scores_gen.go#L125: return fmt.Errorf("can't encode messages.getInlineGameHighScores#f635e1b as nil")
tl_messages_get_inline_game_high_scores_gen.go#L128: return fmt.Errorf("unable to encode messages.getInlineGameHighScores#f635e1b: field id: %w", err)
tl_messages_get_inline_game_high_scores_gen.go#L131: return fmt.Errorf("unable to encode messages.getInlineGameHighScores#f635e1b: field user_id is nil")
tl_messages_get_inline_game_high_scores_gen.go#L134: return fmt.Errorf("unable to encode messages.getInlineGameHighScores#f635e1b: field user_id: %w", err)
tl_messages_get_inline_game_high_scores_gen.go#L152: return fmt.Errorf("can't decode messages.getInlineGameHighScores#f635e1b to nil")
tl_messages_get_inline_game_high_scores_gen.go#L155: return fmt.Errorf("unable to decode messages.getInlineGameHighScores#f635e1b: %w", err)
tl_messages_get_inline_game_high_scores_gen.go#L163: return fmt.Errorf("can't decode messages.getInlineGameHighScores#f635e1b to nil")
tl_messages_get_inline_game_high_scores_gen.go#L167: return fmt.Errorf("unable to decode messages.getInlineGameHighScores#f635e1b: field id: %w", err)
tl_messages_get_inline_game_high_scores_gen.go#L173: return fmt.Errorf("unable to decode messages.getInlineGameHighScores#f635e1b: field user_id: %w", err)
tl_messages_get_mask_stickers_gen.go#L108: return fmt.Errorf("can't encode messages.getMaskStickers#65b8c79f as nil")
tl_messages_get_mask_stickers_gen.go#L117: return fmt.Errorf("can't encode messages.getMaskStickers#65b8c79f as nil")
tl_messages_get_mask_stickers_gen.go#L131: return fmt.Errorf("can't decode messages.getMaskStickers#65b8c79f to nil")
tl_messages_get_mask_stickers_gen.go#L134: return fmt.Errorf("unable to decode messages.getMaskStickers#65b8c79f: %w", err)
tl_messages_get_mask_stickers_gen.go#L142: return fmt.Errorf("can't decode messages.getMaskStickers#65b8c79f to nil")
tl_messages_get_mask_stickers_gen.go#L147: return fmt.Errorf("unable to decode messages.getMaskStickers#65b8c79f: field hash: %w", err)
tl_messages_get_message_edit_data_gen.go#L116: return fmt.Errorf("can't encode messages.getMessageEditData#fda68d36 as nil")
tl_messages_get_message_edit_data_gen.go#L125: return fmt.Errorf("can't encode messages.getMessageEditData#fda68d36 as nil")
tl_messages_get_message_edit_data_gen.go#L128: return fmt.Errorf("unable to encode messages.getMessageEditData#fda68d36: field peer is nil")
tl_messages_get_message_edit_data_gen.go#L131: return fmt.Errorf("unable to encode messages.getMessageEditData#fda68d36: field peer: %w", err)
tl_messages_get_message_edit_data_gen.go#L150: return fmt.Errorf("can't decode messages.getMessageEditData#fda68d36 to nil")
tl_messages_get_message_edit_data_gen.go#L153: return fmt.Errorf("unable to decode messages.getMessageEditData#fda68d36: %w", err)
tl_messages_get_message_edit_data_gen.go#L161: return fmt.Errorf("can't decode messages.getMessageEditData#fda68d36 to nil")
tl_messages_get_message_edit_data_gen.go#L166: return fmt.Errorf("unable to decode messages.getMessageEditData#fda68d36: field peer: %w", err)
tl_messages_get_message_edit_data_gen.go#L173: return fmt.Errorf("unable to decode messages.getMessageEditData#fda68d36: field id: %w", err)
tl_messages_get_messages_gen.go#L105: return fmt.Errorf("can't encode messages.getMessages#63c66506 as nil")
tl_messages_get_messages_gen.go#L114: return fmt.Errorf("can't encode messages.getMessages#63c66506 as nil")
tl_messages_get_messages_gen.go#L119: return fmt.Errorf("unable to encode messages.getMessages#63c66506: field id element with index %d is nil", idx)
tl_messages_get_messages_gen.go#L122: return fmt.Errorf("unable to encode messages.getMessages#63c66506: field id element with index %d: %w", idx, err)
tl_messages_get_messages_gen.go#L141: return fmt.Errorf("can't decode messages.getMessages#63c66506 to nil")
tl_messages_get_messages_gen.go#L144: return fmt.Errorf("unable to decode messages.getMessages#63c66506: %w", err)
tl_messages_get_messages_gen.go#L152: return fmt.Errorf("can't decode messages.getMessages#63c66506 to nil")
tl_messages_get_messages_gen.go#L157: return fmt.Errorf("unable to decode messages.getMessages#63c66506: field id: %w", err)
tl_messages_get_messages_gen.go#L162: return fmt.Errorf("unable to decode messages.getMessages#63c66506: field id: %w", err)
tl_messages_get_messages_views_gen.go#L130: return fmt.Errorf("can't encode messages.getMessagesViews#5784d3e1 as nil")
tl_messages_get_messages_views_gen.go#L139: return fmt.Errorf("can't encode messages.getMessagesViews#5784d3e1 as nil")
tl_messages_get_messages_views_gen.go#L142: return fmt.Errorf("unable to encode messages.getMessagesViews#5784d3e1: field peer is nil")
tl_messages_get_messages_views_gen.go#L145: return fmt.Errorf("unable to encode messages.getMessagesViews#5784d3e1: field peer: %w", err)
tl_messages_get_messages_views_gen.go#L173: return fmt.Errorf("can't decode messages.getMessagesViews#5784d3e1 to nil")
tl_messages_get_messages_views_gen.go#L176: return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: %w", err)
tl_messages_get_messages_views_gen.go#L184: return fmt.Errorf("can't decode messages.getMessagesViews#5784d3e1 to nil")
tl_messages_get_messages_views_gen.go#L189: return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: field peer: %w", err)
tl_messages_get_messages_views_gen.go#L196: return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: field id: %w", err)
tl_messages_get_messages_views_gen.go#L201: return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: field id: %w", err)
tl_messages_get_messages_views_gen.go#L209: return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: field increment: %w", err)
tl_messages_get_old_featured_stickers_gen.go#L133: return fmt.Errorf("can't encode messages.getOldFeaturedStickers#5fe7025b as nil")
tl_messages_get_old_featured_stickers_gen.go#L142: return fmt.Errorf("can't encode messages.getOldFeaturedStickers#5fe7025b as nil")
tl_messages_get_old_featured_stickers_gen.go#L168: return fmt.Errorf("can't decode messages.getOldFeaturedStickers#5fe7025b to nil")
tl_messages_get_old_featured_stickers_gen.go#L171: return fmt.Errorf("unable to decode messages.getOldFeaturedStickers#5fe7025b: %w", err)
tl_messages_get_old_featured_stickers_gen.go#L179: return fmt.Errorf("can't decode messages.getOldFeaturedStickers#5fe7025b to nil")
tl_messages_get_old_featured_stickers_gen.go#L184: return fmt.Errorf("unable to decode messages.getOldFeaturedStickers#5fe7025b: field offset: %w", err)
tl_messages_get_old_featured_stickers_gen.go#L191: return fmt.Errorf("unable to decode messages.getOldFeaturedStickers#5fe7025b: field limit: %w", err)
tl_messages_get_old_featured_stickers_gen.go#L198: return fmt.Errorf("unable to decode messages.getOldFeaturedStickers#5fe7025b: field hash: %w", err)
tl_messages_get_onlines_gen.go#L105: return fmt.Errorf("can't encode messages.getOnlines#6e2be050 as nil")
tl_messages_get_onlines_gen.go#L114: return fmt.Errorf("can't encode messages.getOnlines#6e2be050 as nil")
tl_messages_get_onlines_gen.go#L117: return fmt.Errorf("unable to encode messages.getOnlines#6e2be050: field peer is nil")
tl_messages_get_onlines_gen.go#L120: return fmt.Errorf("unable to encode messages.getOnlines#6e2be050: field peer: %w", err)
tl_messages_get_onlines_gen.go#L133: return fmt.Errorf("can't decode messages.getOnlines#6e2be050 to nil")
tl_messages_get_onlines_gen.go#L136: return fmt.Errorf("unable to decode messages.getOnlines#6e2be050: %w", err)
tl_messages_get_onlines_gen.go#L144: return fmt.Errorf("can't decode messages.getOnlines#6e2be050 to nil")
tl_messages_get_onlines_gen.go#L149: return fmt.Errorf("unable to decode messages.getOnlines#6e2be050: field peer: %w", err)
tl_messages_get_peer_dialogs_gen.go#L105: return fmt.Errorf("can't encode messages.getPeerDialogs#e470bcfd as nil")
tl_messages_get_peer_dialogs_gen.go#L114: return fmt.Errorf("can't encode messages.getPeerDialogs#e470bcfd as nil")
tl_messages_get_peer_dialogs_gen.go#L119: return fmt.Errorf("unable to encode messages.getPeerDialogs#e470bcfd: field peers element with index %d is nil", idx)
tl_messages_get_peer_dialogs_gen.go#L122: return fmt.Errorf("unable to encode messages.getPeerDialogs#e470bcfd: field peers element with index %d: %w", idx, err)
tl_messages_get_peer_dialogs_gen.go#L141: return fmt.Errorf("can't decode messages.getPeerDialogs#e470bcfd to nil")
tl_messages_get_peer_dialogs_gen.go#L144: return fmt.Errorf("unable to decode messages.getPeerDialogs#e470bcfd: %w", err)
tl_messages_get_peer_dialogs_gen.go#L152: return fmt.Errorf("can't decode messages.getPeerDialogs#e470bcfd to nil")
tl_messages_get_peer_dialogs_gen.go#L157: return fmt.Errorf("unable to decode messages.getPeerDialogs#e470bcfd: field peers: %w", err)
tl_messages_get_peer_dialogs_gen.go#L162: return fmt.Errorf("unable to decode messages.getPeerDialogs#e470bcfd: field peers: %w", err)
tl_messages_get_peer_settings_gen.go#L105: return fmt.Errorf("can't encode messages.getPeerSettings#3672e09c as nil")
tl_messages_get_peer_settings_gen.go#L114: return fmt.Errorf("can't encode messages.getPeerSettings#3672e09c as nil")
tl_messages_get_peer_settings_gen.go#L117: return fmt.Errorf("unable to encode messages.getPeerSettings#3672e09c: field peer is nil")
tl_messages_get_peer_settings_gen.go#L120: return fmt.Errorf("unable to encode messages.getPeerSettings#3672e09c: field peer: %w", err)
tl_messages_get_peer_settings_gen.go#L133: return fmt.Errorf("can't decode messages.getPeerSettings#3672e09c to nil")
tl_messages_get_peer_settings_gen.go#L136: return fmt.Errorf("unable to decode messages.getPeerSettings#3672e09c: %w", err)
tl_messages_get_peer_settings_gen.go#L144: return fmt.Errorf("can't decode messages.getPeerSettings#3672e09c to nil")
tl_messages_get_peer_settings_gen.go#L149: return fmt.Errorf("unable to decode messages.getPeerSettings#3672e09c: field peer: %w", err)
tl_messages_get_pinned_dialogs_gen.go#L108: return fmt.Errorf("can't encode messages.getPinnedDialogs#d6b94df2 as nil")
tl_messages_get_pinned_dialogs_gen.go#L117: return fmt.Errorf("can't encode messages.getPinnedDialogs#d6b94df2 as nil")
tl_messages_get_pinned_dialogs_gen.go#L131: return fmt.Errorf("can't decode messages.getPinnedDialogs#d6b94df2 to nil")
tl_messages_get_pinned_dialogs_gen.go#L134: return fmt.Errorf("unable to decode messages.getPinnedDialogs#d6b94df2: %w", err)
tl_messages_get_pinned_dialogs_gen.go#L142: return fmt.Errorf("can't decode messages.getPinnedDialogs#d6b94df2 to nil")
tl_messages_get_pinned_dialogs_gen.go#L147: return fmt.Errorf("unable to decode messages.getPinnedDialogs#d6b94df2: field folder_id: %w", err)
tl_messages_get_poll_results_gen.go#L116: return fmt.Errorf("can't encode messages.getPollResults#73bb643b as nil")
tl_messages_get_poll_results_gen.go#L125: return fmt.Errorf("can't encode messages.getPollResults#73bb643b as nil")
tl_messages_get_poll_results_gen.go#L128: return fmt.Errorf("unable to encode messages.getPollResults#73bb643b: field peer is nil")
tl_messages_get_poll_results_gen.go#L131: return fmt.Errorf("unable to encode messages.getPollResults#73bb643b: field peer: %w", err)
tl_messages_get_poll_results_gen.go#L150: return fmt.Errorf("can't decode messages.getPollResults#73bb643b to nil")
tl_messages_get_poll_results_gen.go#L153: return fmt.Errorf("unable to decode messages.getPollResults#73bb643b: %w", err)
tl_messages_get_poll_results_gen.go#L161: return fmt.Errorf("can't decode messages.getPollResults#73bb643b to nil")
tl_messages_get_poll_results_gen.go#L166: return fmt.Errorf("unable to decode messages.getPollResults#73bb643b: field peer: %w", err)
tl_messages_get_poll_results_gen.go#L173: return fmt.Errorf("unable to decode messages.getPollResults#73bb643b: field msg_id: %w", err)
tl_messages_get_poll_votes_gen.go#L176: return fmt.Errorf("can't encode messages.getPollVotes#b86e380e as nil")
tl_messages_get_poll_votes_gen.go#L185: return fmt.Errorf("can't encode messages.getPollVotes#b86e380e as nil")
tl_messages_get_poll_votes_gen.go#L194: return fmt.Errorf("unable to encode messages.getPollVotes#b86e380e: field flags: %w", err)
tl_messages_get_poll_votes_gen.go#L197: return fmt.Errorf("unable to encode messages.getPollVotes#b86e380e: field peer is nil")
tl_messages_get_poll_votes_gen.go#L200: return fmt.Errorf("unable to encode messages.getPollVotes#b86e380e: field peer: %w", err)
tl_messages_get_poll_votes_gen.go#L261: return fmt.Errorf("can't decode messages.getPollVotes#b86e380e to nil")
tl_messages_get_poll_votes_gen.go#L264: return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: %w", err)
tl_messages_get_poll_votes_gen.go#L272: return fmt.Errorf("can't decode messages.getPollVotes#b86e380e to nil")
tl_messages_get_poll_votes_gen.go#L276: return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field flags: %w", err)
tl_messages_get_poll_votes_gen.go#L282: return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field peer: %w", err)
tl_messages_get_poll_votes_gen.go#L289: return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field id: %w", err)
tl_messages_get_poll_votes_gen.go#L296: return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field option: %w", err)
tl_messages_get_poll_votes_gen.go#L303: return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field offset: %w", err)
tl_messages_get_poll_votes_gen.go#L310: return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field limit: %w", err)
tl_messages_get_recent_locations_gen.go#L133: return fmt.Errorf("can't encode messages.getRecentLocations#bbc45b09 as nil")
tl_messages_get_recent_locations_gen.go#L142: return fmt.Errorf("can't encode messages.getRecentLocations#bbc45b09 as nil")
tl_messages_get_recent_locations_gen.go#L145: return fmt.Errorf("unable to encode messages.getRecentLocations#bbc45b09: field peer is nil")
tl_messages_get_recent_locations_gen.go#L148: return fmt.Errorf("unable to encode messages.getRecentLocations#bbc45b09: field peer: %w", err)
tl_messages_get_recent_locations_gen.go#L173: return fmt.Errorf("can't decode messages.getRecentLocations#bbc45b09 to nil")
tl_messages_get_recent_locations_gen.go#L176: return fmt.Errorf("unable to decode messages.getRecentLocations#bbc45b09: %w", err)
tl_messages_get_recent_locations_gen.go#L184: return fmt.Errorf("can't decode messages.getRecentLocations#bbc45b09 to nil")
tl_messages_get_recent_locations_gen.go#L189: return fmt.Errorf("unable to decode messages.getRecentLocations#bbc45b09: field peer: %w", err)
tl_messages_get_recent_locations_gen.go#L196: return fmt.Errorf("unable to decode messages.getRecentLocations#bbc45b09: field limit: %w", err)
tl_messages_get_recent_locations_gen.go#L203: return fmt.Errorf("unable to decode messages.getRecentLocations#bbc45b09: field hash: %w", err)
tl_messages_get_recent_stickers_gen.go#L128: return fmt.Errorf("can't encode messages.getRecentStickers#5ea192c9 as nil")
tl_messages_get_recent_stickers_gen.go#L137: return fmt.Errorf("can't encode messages.getRecentStickers#5ea192c9 as nil")
tl_messages_get_recent_stickers_gen.go#L143: return fmt.Errorf("unable to encode messages.getRecentStickers#5ea192c9: field flags: %w", err)
tl_messages_get_recent_stickers_gen.go#L173: return fmt.Errorf("can't decode messages.getRecentStickers#5ea192c9 to nil")
tl_messages_get_recent_stickers_gen.go#L176: return fmt.Errorf("unable to decode messages.getRecentStickers#5ea192c9: %w", err)
tl_messages_get_recent_stickers_gen.go#L184: return fmt.Errorf("can't decode messages.getRecentStickers#5ea192c9 to nil")
tl_messages_get_recent_stickers_gen.go#L188: return fmt.Errorf("unable to decode messages.getRecentStickers#5ea192c9: field flags: %w", err)
tl_messages_get_recent_stickers_gen.go#L195: return fmt.Errorf("unable to decode messages.getRecentStickers#5ea192c9: field hash: %w", err)
tl_messages_get_replies_gen.go#L210: return fmt.Errorf("can't encode messages.getReplies#24b581ba as nil")
tl_messages_get_replies_gen.go#L219: return fmt.Errorf("can't encode messages.getReplies#24b581ba as nil")
tl_messages_get_replies_gen.go#L222: return fmt.Errorf("unable to encode messages.getReplies#24b581ba: field peer is nil")
tl_messages_get_replies_gen.go#L225: return fmt.Errorf("unable to encode messages.getReplies#24b581ba: field peer: %w", err)
tl_messages_get_replies_gen.go#L286: return fmt.Errorf("can't decode messages.getReplies#24b581ba to nil")
tl_messages_get_replies_gen.go#L289: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: %w", err)
tl_messages_get_replies_gen.go#L297: return fmt.Errorf("can't decode messages.getReplies#24b581ba to nil")
tl_messages_get_replies_gen.go#L302: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field peer: %w", err)
tl_messages_get_replies_gen.go#L309: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field msg_id: %w", err)
tl_messages_get_replies_gen.go#L316: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field offset_id: %w", err)
tl_messages_get_replies_gen.go#L323: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field offset_date: %w", err)
tl_messages_get_replies_gen.go#L330: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field add_offset: %w", err)
tl_messages_get_replies_gen.go#L337: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field limit: %w", err)
tl_messages_get_replies_gen.go#L344: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field max_id: %w", err)
tl_messages_get_replies_gen.go#L351: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field min_id: %w", err)
tl_messages_get_replies_gen.go#L358: return fmt.Errorf("unable to decode messages.getReplies#24b581ba: field hash: %w", err)
tl_messages_get_saved_gifs_gen.go#L108: return fmt.Errorf("can't encode messages.getSavedGifs#83bf3d52 as nil")
tl_messages_get_saved_gifs_gen.go#L117: return fmt.Errorf("can't encode messages.getSavedGifs#83bf3d52 as nil")
tl_messages_get_saved_gifs_gen.go#L131: return fmt.Errorf("can't decode messages.getSavedGifs#83bf3d52 to nil")
tl_messages_get_saved_gifs_gen.go#L134: return fmt.Errorf("unable to decode messages.getSavedGifs#83bf3d52: %w", err)
tl_messages_get_saved_gifs_gen.go#L142: return fmt.Errorf("can't decode messages.getSavedGifs#83bf3d52 to nil")
tl_messages_get_saved_gifs_gen.go#L147: return fmt.Errorf("unable to decode messages.getSavedGifs#83bf3d52: field hash: %w", err)
tl_messages_get_scheduled_history_gen.go#L119: return fmt.Errorf("can't encode messages.getScheduledHistory#e2c2685b as nil")
tl_messages_get_scheduled_history_gen.go#L128: return fmt.Errorf("can't encode messages.getScheduledHistory#e2c2685b as nil")
tl_messages_get_scheduled_history_gen.go#L131: return fmt.Errorf("unable to encode messages.getScheduledHistory#e2c2685b: field peer is nil")
tl_messages_get_scheduled_history_gen.go#L134: return fmt.Errorf("unable to encode messages.getScheduledHistory#e2c2685b: field peer: %w", err)
tl_messages_get_scheduled_history_gen.go#L153: return fmt.Errorf("can't decode messages.getScheduledHistory#e2c2685b to nil")
tl_messages_get_scheduled_history_gen.go#L156: return fmt.Errorf("unable to decode messages.getScheduledHistory#e2c2685b: %w", err)
tl_messages_get_scheduled_history_gen.go#L164: return fmt.Errorf("can't decode messages.getScheduledHistory#e2c2685b to nil")
tl_messages_get_scheduled_history_gen.go#L169: return fmt.Errorf("unable to decode messages.getScheduledHistory#e2c2685b: field peer: %w", err)
tl_messages_get_scheduled_history_gen.go#L176: return fmt.Errorf("unable to decode messages.getScheduledHistory#e2c2685b: field hash: %w", err)
tl_messages_get_scheduled_messages_gen.go#L116: return fmt.Errorf("can't encode messages.getScheduledMessages#bdbb0464 as nil")
tl_messages_get_scheduled_messages_gen.go#L125: return fmt.Errorf("can't encode messages.getScheduledMessages#bdbb0464 as nil")
tl_messages_get_scheduled_messages_gen.go#L128: return fmt.Errorf("unable to encode messages.getScheduledMessages#bdbb0464: field peer is nil")
tl_messages_get_scheduled_messages_gen.go#L131: return fmt.Errorf("unable to encode messages.getScheduledMessages#bdbb0464: field peer: %w", err)
tl_messages_get_scheduled_messages_gen.go#L153: return fmt.Errorf("can't decode messages.getScheduledMessages#bdbb0464 to nil")
tl_messages_get_scheduled_messages_gen.go#L156: return fmt.Errorf("unable to decode messages.getScheduledMessages#bdbb0464: %w", err)
tl_messages_get_scheduled_messages_gen.go#L164: return fmt.Errorf("can't decode messages.getScheduledMessages#bdbb0464 to nil")
tl_messages_get_scheduled_messages_gen.go#L169: return fmt.Errorf("unable to decode messages.getScheduledMessages#bdbb0464: field peer: %w", err)
tl_messages_get_scheduled_messages_gen.go#L176: return fmt.Errorf("unable to decode messages.getScheduledMessages#bdbb0464: field id: %w", err)
tl_messages_get_scheduled_messages_gen.go#L181: return fmt.Errorf("unable to decode messages.getScheduledMessages#bdbb0464: field id: %w", err)
tl_messages_get_search_counters_gen.go#L120: return fmt.Errorf("can't encode messages.getSearchCounters#732eef00 as nil")
tl_messages_get_search_counters_gen.go#L129: return fmt.Errorf("can't encode messages.getSearchCounters#732eef00 as nil")
tl_messages_get_search_counters_gen.go#L132: return fmt.Errorf("unable to encode messages.getSearchCounters#732eef00: field peer is nil")
tl_messages_get_search_counters_gen.go#L135: return fmt.Errorf("unable to encode messages.getSearchCounters#732eef00: field peer: %w", err)
tl_messages_get_search_counters_gen.go#L140: return fmt.Errorf("unable to encode messages.getSearchCounters#732eef00: field filters element with index %d is nil", idx)
tl_messages_get_search_counters_gen.go#L143: return fmt.Errorf("unable to encode messages.getSearchCounters#732eef00: field filters element with index %d: %w", idx, err)
tl_messages_get_search_counters_gen.go#L167: return fmt.Errorf("can't decode messages.getSearchCounters#732eef00 to nil")
tl_messages_get_search_counters_gen.go#L170: return fmt.Errorf("unable to decode messages.getSearchCounters#732eef00: %w", err)
tl_messages_get_search_counters_gen.go#L178: return fmt.Errorf("can't decode messages.getSearchCounters#732eef00 to nil")
tl_messages_get_search_counters_gen.go#L183: return fmt.Errorf("unable to decode messages.getSearchCounters#732eef00: field peer: %w", err)
tl_messages_get_search_counters_gen.go#L190: return fmt.Errorf("unable to decode messages.getSearchCounters#732eef00: field filters: %w", err)
tl_messages_get_search_counters_gen.go#L195: return fmt.Errorf("unable to decode messages.getSearchCounters#732eef00: field filters: %w", err)
tl_messages_get_split_ranges_gen.go#L88: return fmt.Errorf("can't encode messages.getSplitRanges#1cff7e08 as nil")
tl_messages_get_split_ranges_gen.go#L97: return fmt.Errorf("can't encode messages.getSplitRanges#1cff7e08 as nil")
tl_messages_get_split_ranges_gen.go#L105: return fmt.Errorf("can't decode messages.getSplitRanges#1cff7e08 to nil")
tl_messages_get_split_ranges_gen.go#L108: return fmt.Errorf("unable to decode messages.getSplitRanges#1cff7e08: %w", err)
tl_messages_get_split_ranges_gen.go#L116: return fmt.Errorf("can't decode messages.getSplitRanges#1cff7e08 to nil")
tl_messages_get_stats_url_gen.go#L137: return fmt.Errorf("can't encode messages.getStatsURL#812c2ae6 as nil")
tl_messages_get_stats_url_gen.go#L146: return fmt.Errorf("can't encode messages.getStatsURL#812c2ae6 as nil")
tl_messages_get_stats_url_gen.go#L152: return fmt.Errorf("unable to encode messages.getStatsURL#812c2ae6: field flags: %w", err)
tl_messages_get_stats_url_gen.go#L155: return fmt.Errorf("unable to encode messages.getStatsURL#812c2ae6: field peer is nil")
tl_messages_get_stats_url_gen.go#L158: return fmt.Errorf("unable to encode messages.getStatsURL#812c2ae6: field peer: %w", err)
tl_messages_get_stats_url_gen.go#L193: return fmt.Errorf("can't decode messages.getStatsURL#812c2ae6 to nil")
tl_messages_get_stats_url_gen.go#L196: return fmt.Errorf("unable to decode messages.getStatsURL#812c2ae6: %w", err)
tl_messages_get_stats_url_gen.go#L204: return fmt.Errorf("can't decode messages.getStatsURL#812c2ae6 to nil")
tl_messages_get_stats_url_gen.go#L208: return fmt.Errorf("unable to decode messages.getStatsURL#812c2ae6: field flags: %w", err)
tl_messages_get_stats_url_gen.go#L215: return fmt.Errorf("unable to decode messages.getStatsURL#812c2ae6: field peer: %w", err)
tl_messages_get_stats_url_gen.go#L222: return fmt.Errorf("unable to decode messages.getStatsURL#812c2ae6: field params: %w", err)
tl_messages_get_sticker_set_gen.go#L105: return fmt.Errorf("can't encode messages.getStickerSet#2619a90e as nil")
tl_messages_get_sticker_set_gen.go#L114: return fmt.Errorf("can't encode messages.getStickerSet#2619a90e as nil")
tl_messages_get_sticker_set_gen.go#L117: return fmt.Errorf("unable to encode messages.getStickerSet#2619a90e: field stickerset is nil")
tl_messages_get_sticker_set_gen.go#L120: return fmt.Errorf("unable to encode messages.getStickerSet#2619a90e: field stickerset: %w", err)
tl_messages_get_sticker_set_gen.go#L133: return fmt.Errorf("can't decode messages.getStickerSet#2619a90e to nil")
tl_messages_get_sticker_set_gen.go#L136: return fmt.Errorf("unable to decode messages.getStickerSet#2619a90e: %w", err)
tl_messages_get_sticker_set_gen.go#L144: return fmt.Errorf("can't decode messages.getStickerSet#2619a90e to nil")
tl_messages_get_sticker_set_gen.go#L149: return fmt.Errorf("unable to decode messages.getStickerSet#2619a90e: field stickerset: %w", err)
tl_messages_get_stickers_gen.go#L119: return fmt.Errorf("can't encode messages.getStickers#43d4f2c as nil")
tl_messages_get_stickers_gen.go#L128: return fmt.Errorf("can't encode messages.getStickers#43d4f2c as nil")
tl_messages_get_stickers_gen.go#L148: return fmt.Errorf("can't decode messages.getStickers#43d4f2c to nil")
tl_messages_get_stickers_gen.go#L151: return fmt.Errorf("unable to decode messages.getStickers#43d4f2c: %w", err)
tl_messages_get_stickers_gen.go#L159: return fmt.Errorf("can't decode messages.getStickers#43d4f2c to nil")
tl_messages_get_stickers_gen.go#L164: return fmt.Errorf("unable to decode messages.getStickers#43d4f2c: field emoticon: %w", err)
tl_messages_get_stickers_gen.go#L171: return fmt.Errorf("unable to decode messages.getStickers#43d4f2c: field hash: %w", err)
tl_messages_get_suggested_dialog_filters_gen.go#L91: return fmt.Errorf("can't encode messages.getSuggestedDialogFilters#a29cd42c as nil")
tl_messages_get_suggested_dialog_filters_gen.go#L100: return fmt.Errorf("can't encode messages.getSuggestedDialogFilters#a29cd42c as nil")
tl_messages_get_suggested_dialog_filters_gen.go#L108: return fmt.Errorf("can't decode messages.getSuggestedDialogFilters#a29cd42c to nil")
tl_messages_get_suggested_dialog_filters_gen.go#L111: return fmt.Errorf("unable to decode messages.getSuggestedDialogFilters#a29cd42c: %w", err)
tl_messages_get_suggested_dialog_filters_gen.go#L119: return fmt.Errorf("can't decode messages.getSuggestedDialogFilters#a29cd42c to nil")
tl_messages_get_unread_mentions_gen.go#L175: return fmt.Errorf("can't encode messages.getUnreadMentions#46578472 as nil")
tl_messages_get_unread_mentions_gen.go#L184: return fmt.Errorf("can't encode messages.getUnreadMentions#46578472 as nil")
tl_messages_get_unread_mentions_gen.go#L187: return fmt.Errorf("unable to encode messages.getUnreadMentions#46578472: field peer is nil")
tl_messages_get_unread_mentions_gen.go#L190: return fmt.Errorf("unable to encode messages.getUnreadMentions#46578472: field peer: %w", err)
tl_messages_get_unread_mentions_gen.go#L233: return fmt.Errorf("can't decode messages.getUnreadMentions#46578472 to nil")
tl_messages_get_unread_mentions_gen.go#L236: return fmt.Errorf("unable to decode messages.getUnreadMentions#46578472: %w", err)
tl_messages_get_unread_mentions_gen.go#L244: return fmt.Errorf("can't decode messages.getUnreadMentions#46578472 to nil")
tl_messages_get_unread_mentions_gen.go#L249: return fmt.Errorf("unable to decode messages.getUnreadMentions#46578472: field peer: %w", err)
tl_messages_get_unread_mentions_gen.go#L256: return fmt.Errorf("unable to decode messages.getUnreadMentions#46578472: field offset_id: %w", err)
tl_messages_get_unread_mentions_gen.go#L263: return fmt.Errorf("unable to decode messages.getUnreadMentions#46578472: field add_offset: %w", err)
tl_messages_get_unread_mentions_gen.go#L270: return fmt.Errorf("unable to decode messages.getUnreadMentions#46578472: field limit: %w", err)
tl_messages_get_unread_mentions_gen.go#L277: return fmt.Errorf("unable to decode messages.getUnreadMentions#46578472: field max_id: %w", err)
tl_messages_get_unread_mentions_gen.go#L284: return fmt.Errorf("unable to decode messages.getUnreadMentions#46578472: field min_id: %w", err)
tl_messages_get_web_page_gen.go#L122: return fmt.Errorf("can't encode messages.getWebPage#32ca8f91 as nil")
tl_messages_get_web_page_gen.go#L131: return fmt.Errorf("can't encode messages.getWebPage#32ca8f91 as nil")
tl_messages_get_web_page_gen.go#L151: return fmt.Errorf("can't decode messages.getWebPage#32ca8f91 to nil")
tl_messages_get_web_page_gen.go#L154: return fmt.Errorf("unable to decode messages.getWebPage#32ca8f91: %w", err)
tl_messages_get_web_page_gen.go#L162: return fmt.Errorf("can't decode messages.getWebPage#32ca8f91 to nil")
tl_messages_get_web_page_gen.go#L167: return fmt.Errorf("unable to decode messages.getWebPage#32ca8f91: field url: %w", err)
tl_messages_get_web_page_gen.go#L174: return fmt.Errorf("unable to decode messages.getWebPage#32ca8f91: field hash: %w", err)
tl_messages_get_web_page_preview_gen.go#L133: return fmt.Errorf("can't encode messages.getWebPagePreview#8b68b0cc as nil")
tl_messages_get_web_page_preview_gen.go#L142: return fmt.Errorf("can't encode messages.getWebPagePreview#8b68b0cc as nil")
tl_messages_get_web_page_preview_gen.go#L148: return fmt.Errorf("unable to encode messages.getWebPagePreview#8b68b0cc: field flags: %w", err)
tl_messages_get_web_page_preview_gen.go#L155: return fmt.Errorf("unable to encode messages.getWebPagePreview#8b68b0cc: field entities element with index %d is nil", idx)
tl_messages_get_web_page_preview_gen.go#L158: return fmt.Errorf("unable to encode messages.getWebPagePreview#8b68b0cc: field entities element with index %d: %w", idx, err)
tl_messages_get_web_page_preview_gen.go#L196: return fmt.Errorf("can't decode messages.getWebPagePreview#8b68b0cc to nil")
tl_messages_get_web_page_preview_gen.go#L199: return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: %w", err)
tl_messages_get_web_page_preview_gen.go#L207: return fmt.Errorf("can't decode messages.getWebPagePreview#8b68b0cc to nil")
tl_messages_get_web_page_preview_gen.go#L211: return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: field flags: %w", err)
tl_messages_get_web_page_preview_gen.go#L217: return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: field message: %w", err)
tl_messages_get_web_page_preview_gen.go#L224: return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: field entities: %w", err)
tl_messages_get_web_page_preview_gen.go#L229: return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: field entities: %w", err)
tl_messages_hide_peer_settings_bar_gen.go#L110: return fmt.Errorf("can't encode messages.hidePeerSettingsBar#4facb138 as nil")
tl_messages_hide_peer_settings_bar_gen.go#L119: return fmt.Errorf("can't encode messages.hidePeerSettingsBar#4facb138 as nil")
tl_messages_hide_peer_settings_bar_gen.go#L122: return fmt.Errorf("unable to encode messages.hidePeerSettingsBar#4facb138: field peer is nil")
tl_messages_hide_peer_settings_bar_gen.go#L125: return fmt.Errorf("unable to encode messages.hidePeerSettingsBar#4facb138: field peer: %w", err)
tl_messages_hide_peer_settings_bar_gen.go#L138: return fmt.Errorf("can't decode messages.hidePeerSettingsBar#4facb138 to nil")
tl_messages_hide_peer_settings_bar_gen.go#L141: return fmt.Errorf("unable to decode messages.hidePeerSettingsBar#4facb138: %w", err)
tl_messages_hide_peer_settings_bar_gen.go#L149: return fmt.Errorf("can't decode messages.hidePeerSettingsBar#4facb138 to nil")
tl_messages_hide_peer_settings_bar_gen.go#L154: return fmt.Errorf("unable to decode messages.hidePeerSettingsBar#4facb138: field peer: %w", err)
tl_messages_high_scores_gen.go#L116: return fmt.Errorf("can't encode messages.highScores#9a3bfd99 as nil")
tl_messages_high_scores_gen.go#L125: return fmt.Errorf("can't encode messages.highScores#9a3bfd99 as nil")
tl_messages_high_scores_gen.go#L130: return fmt.Errorf("unable to encode messages.highScores#9a3bfd99: field scores element with index %d: %w", idx, err)
tl_messages_high_scores_gen.go#L136: return fmt.Errorf("unable to encode messages.highScores#9a3bfd99: field users element with index %d is nil", idx)
tl_messages_high_scores_gen.go#L139: return fmt.Errorf("unable to encode messages.highScores#9a3bfd99: field users element with index %d: %w", idx, err)
tl_messages_high_scores_gen.go#L163: return fmt.Errorf("can't decode messages.highScores#9a3bfd99 to nil")
tl_messages_high_scores_gen.go#L166: return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: %w", err)
tl_messages_high_scores_gen.go#L174: return fmt.Errorf("can't decode messages.highScores#9a3bfd99 to nil")
tl_messages_high_scores_gen.go#L179: return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: field scores: %w", err)
tl_messages_high_scores_gen.go#L184: return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: field scores: %w", err)
tl_messages_high_scores_gen.go#L192: return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: field users: %w", err)
tl_messages_high_scores_gen.go#L197: return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: field users: %w", err)
tl_messages_history_import_gen.go#L104: return fmt.Errorf("can't encode messages.historyImport#1662af0b as nil")
tl_messages_history_import_gen.go#L113: return fmt.Errorf("can't encode messages.historyImport#1662af0b as nil")
tl_messages_history_import_gen.go#L127: return fmt.Errorf("can't decode messages.historyImport#1662af0b to nil")
tl_messages_history_import_gen.go#L130: return fmt.Errorf("unable to decode messages.historyImport#1662af0b: %w", err)
tl_messages_history_import_gen.go#L138: return fmt.Errorf("can't decode messages.historyImport#1662af0b to nil")
tl_messages_history_import_gen.go#L143: return fmt.Errorf("unable to decode messages.historyImport#1662af0b: field id: %w", err)
tl_messages_history_import_parsed_gen.go#L139: return fmt.Errorf("can't encode messages.historyImportParsed#5e0fb7b9 as nil")
tl_messages_history_import_parsed_gen.go#L148: return fmt.Errorf("can't encode messages.historyImportParsed#5e0fb7b9 as nil")
tl_messages_history_import_parsed_gen.go#L160: return fmt.Errorf("unable to encode messages.historyImportParsed#5e0fb7b9: field flags: %w", err)
tl_messages_history_import_parsed_gen.go#L218: return fmt.Errorf("can't decode messages.historyImportParsed#5e0fb7b9 to nil")
tl_messages_history_import_parsed_gen.go#L221: return fmt.Errorf("unable to decode messages.historyImportParsed#5e0fb7b9: %w", err)
tl_messages_history_import_parsed_gen.go#L229: return fmt.Errorf("can't decode messages.historyImportParsed#5e0fb7b9 to nil")
tl_messages_history_import_parsed_gen.go#L233: return fmt.Errorf("unable to decode messages.historyImportParsed#5e0fb7b9: field flags: %w", err)
tl_messages_history_import_parsed_gen.go#L241: return fmt.Errorf("unable to decode messages.historyImportParsed#5e0fb7b9: field title: %w", err)
tl_messages_import_chat_invite_gen.go#L105: return fmt.Errorf("can't encode messages.importChatInvite#6c50051c as nil")
tl_messages_import_chat_invite_gen.go#L114: return fmt.Errorf("can't encode messages.importChatInvite#6c50051c as nil")
tl_messages_import_chat_invite_gen.go#L128: return fmt.Errorf("can't decode messages.importChatInvite#6c50051c to nil")
tl_messages_import_chat_invite_gen.go#L131: return fmt.Errorf("unable to decode messages.importChatInvite#6c50051c: %w", err)
tl_messages_import_chat_invite_gen.go#L139: return fmt.Errorf("can't decode messages.importChatInvite#6c50051c to nil")
tl_messages_import_chat_invite_gen.go#L144: return fmt.Errorf("unable to decode messages.importChatInvite#6c50051c: field hash: %w", err)
tl_messages_inactive_chats_gen.go#L127: return fmt.Errorf("can't encode messages.inactiveChats#a927fec5 as nil")
tl_messages_inactive_chats_gen.go#L136: return fmt.Errorf("can't encode messages.inactiveChats#a927fec5 as nil")
tl_messages_inactive_chats_gen.go#L145: return fmt.Errorf("unable to encode messages.inactiveChats#a927fec5: field chats element with index %d is nil", idx)
tl_messages_inactive_chats_gen.go#L148: return fmt.Errorf("unable to encode messages.inactiveChats#a927fec5: field chats element with index %d: %w", idx, err)
tl_messages_inactive_chats_gen.go#L154: return fmt.Errorf("unable to encode messages.inactiveChats#a927fec5: field users element with index %d is nil", idx)
tl_messages_inactive_chats_gen.go#L157: return fmt.Errorf("unable to encode messages.inactiveChats#a927fec5: field users element with index %d: %w", idx, err)
tl_messages_inactive_chats_gen.go#L191: return fmt.Errorf("can't decode messages.inactiveChats#a927fec5 to nil")
tl_messages_inactive_chats_gen.go#L194: return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: %w", err)
tl_messages_inactive_chats_gen.go#L202: return fmt.Errorf("can't decode messages.inactiveChats#a927fec5 to nil")
tl_messages_inactive_chats_gen.go#L207: return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field dates: %w", err)
tl_messages_inactive_chats_gen.go#L212: return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field dates: %w", err)
tl_messages_inactive_chats_gen.go#L220: return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field chats: %w", err)
tl_messages_inactive_chats_gen.go#L225: return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field chats: %w", err)
tl_messages_inactive_chats_gen.go#L233: return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field users: %w", err)
tl_messages_inactive_chats_gen.go#L238: return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field users: %w", err)
tl_messages_init_history_import_gen.go#L126: return fmt.Errorf("can't encode messages.initHistoryImport#34090c3b as nil")
tl_messages_init_history_import_gen.go#L135: return fmt.Errorf("can't encode messages.initHistoryImport#34090c3b as nil")
tl_messages_init_history_import_gen.go#L138: return fmt.Errorf("unable to encode messages.initHistoryImport#34090c3b: field peer is nil")
tl_messages_init_history_import_gen.go#L141: return fmt.Errorf("unable to encode messages.initHistoryImport#34090c3b: field peer: %w", err)
tl_messages_init_history_import_gen.go#L144: return fmt.Errorf("unable to encode messages.initHistoryImport#34090c3b: field file is nil")
tl_messages_init_history_import_gen.go#L147: return fmt.Errorf("unable to encode messages.initHistoryImport#34090c3b: field file: %w", err)
tl_messages_init_history_import_gen.go#L171: return fmt.Errorf("can't decode messages.initHistoryImport#34090c3b to nil")
tl_messages_init_history_import_gen.go#L174: return fmt.Errorf("unable to decode messages.initHistoryImport#34090c3b: %w", err)
tl_messages_init_history_import_gen.go#L182: return fmt.Errorf("can't decode messages.initHistoryImport#34090c3b to nil")
tl_messages_init_history_import_gen.go#L187: return fmt.Errorf("unable to decode messages.initHistoryImport#34090c3b: field peer: %w", err)
tl_messages_init_history_import_gen.go#L194: return fmt.Errorf("unable to decode messages.initHistoryImport#34090c3b: field file: %w", err)
tl_messages_init_history_import_gen.go#L201: return fmt.Errorf("unable to decode messages.initHistoryImport#34090c3b: field media_count: %w", err)
tl_messages_install_sticker_set_gen.go#L116: return fmt.Errorf("can't encode messages.installStickerSet#c78fe460 as nil")
tl_messages_install_sticker_set_gen.go#L125: return fmt.Errorf("can't encode messages.installStickerSet#c78fe460 as nil")
tl_messages_install_sticker_set_gen.go#L128: return fmt.Errorf("unable to encode messages.installStickerSet#c78fe460: field stickerset is nil")
tl_messages_install_sticker_set_gen.go#L131: return fmt.Errorf("unable to encode messages.installStickerSet#c78fe460: field stickerset: %w", err)
tl_messages_install_sticker_set_gen.go#L150: return fmt.Errorf("can't decode messages.installStickerSet#c78fe460 to nil")
tl_messages_install_sticker_set_gen.go#L153: return fmt.Errorf("unable to decode messages.installStickerSet#c78fe460: %w", err)
tl_messages_install_sticker_set_gen.go#L161: return fmt.Errorf("can't decode messages.installStickerSet#c78fe460 to nil")
tl_messages_install_sticker_set_gen.go#L166: return fmt.Errorf("unable to decode messages.installStickerSet#c78fe460: field stickerset: %w", err)
tl_messages_install_sticker_set_gen.go#L173: return fmt.Errorf("unable to decode messages.installStickerSet#c78fe460: field archived: %w", err)
tl_messages_mark_dialog_unread_gen.go#L125: return fmt.Errorf("can't encode messages.markDialogUnread#c286d98f as nil")
tl_messages_mark_dialog_unread_gen.go#L134: return fmt.Errorf("can't encode messages.markDialogUnread#c286d98f as nil")
tl_messages_mark_dialog_unread_gen.go#L140: return fmt.Errorf("unable to encode messages.markDialogUnread#c286d98f: field flags: %w", err)
tl_messages_mark_dialog_unread_gen.go#L143: return fmt.Errorf("unable to encode messages.markDialogUnread#c286d98f: field peer is nil")
tl_messages_mark_dialog_unread_gen.go#L146: return fmt.Errorf("unable to encode messages.markDialogUnread#c286d98f: field peer: %w", err)
tl_messages_mark_dialog_unread_gen.go#L175: return fmt.Errorf("can't decode messages.markDialogUnread#c286d98f to nil")
tl_messages_mark_dialog_unread_gen.go#L178: return fmt.Errorf("unable to decode messages.markDialogUnread#c286d98f: %w", err)
tl_messages_mark_dialog_unread_gen.go#L186: return fmt.Errorf("can't decode messages.markDialogUnread#c286d98f to nil")
tl_messages_mark_dialog_unread_gen.go#L190: return fmt.Errorf("unable to decode messages.markDialogUnread#c286d98f: field flags: %w", err)
tl_messages_mark_dialog_unread_gen.go#L197: return fmt.Errorf("unable to decode messages.markDialogUnread#c286d98f: field peer: %w", err)
tl_messages_message_edit_data_gen.go#L114: return fmt.Errorf("can't encode messages.messageEditData#26b5dde6 as nil")
tl_messages_message_edit_data_gen.go#L123: return fmt.Errorf("can't encode messages.messageEditData#26b5dde6 as nil")
tl_messages_message_edit_data_gen.go#L129: return fmt.Errorf("unable to encode messages.messageEditData#26b5dde6: field flags: %w", err)
tl_messages_message_edit_data_gen.go#L153: return fmt.Errorf("can't decode messages.messageEditData#26b5dde6 to nil")
tl_messages_message_edit_data_gen.go#L156: return fmt.Errorf("unable to decode messages.messageEditData#26b5dde6: %w", err)
tl_messages_message_edit_data_gen.go#L164: return fmt.Errorf("can't decode messages.messageEditData#26b5dde6 to nil")
tl_messages_message_edit_data_gen.go#L168: return fmt.Errorf("unable to decode messages.messageEditData#26b5dde6: field flags: %w", err)
tl_messages_message_views_gen.go#L127: return fmt.Errorf("can't encode messages.messageViews#b6c4f543 as nil")
tl_messages_message_views_gen.go#L136: return fmt.Errorf("can't encode messages.messageViews#b6c4f543 as nil")
tl_messages_message_views_gen.go#L141: return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field views element with index %d: %w", idx, err)
tl_messages_message_views_gen.go#L147: return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field chats element with index %d is nil", idx)
tl_messages_message_views_gen.go#L150: return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field chats element with index %d: %w", idx, err)
tl_messages_message_views_gen.go#L156: return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field users element with index %d is nil", idx)
tl_messages_message_views_gen.go#L159: return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field users element with index %d: %w", idx, err)
tl_messages_message_views_gen.go#L193: return fmt.Errorf("can't decode messages.messageViews#b6c4f543 to nil")
tl_messages_message_views_gen.go#L196: return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: %w", err)
tl_messages_message_views_gen.go#L204: return fmt.Errorf("can't decode messages.messageViews#b6c4f543 to nil")
tl_messages_message_views_gen.go#L209: return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field views: %w", err)
tl_messages_message_views_gen.go#L214: return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field views: %w", err)
tl_messages_message_views_gen.go#L222: return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field chats: %w", err)
tl_messages_message_views_gen.go#L227: return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field chats: %w", err)
tl_messages_message_views_gen.go#L235: return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field users: %w", err)
tl_messages_message_views_gen.go#L240: return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field users: %w", err)
tl_messages_messages_gen.go#L127: return fmt.Errorf("can't encode messages.messages#8c718e87 as nil")
tl_messages_messages_gen.go#L136: return fmt.Errorf("can't encode messages.messages#8c718e87 as nil")
tl_messages_messages_gen.go#L141: return fmt.Errorf("unable to encode messages.messages#8c718e87: field messages element with index %d is nil", idx)
tl_messages_messages_gen.go#L144: return fmt.Errorf("unable to encode messages.messages#8c718e87: field messages element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L150: return fmt.Errorf("unable to encode messages.messages#8c718e87: field chats element with index %d is nil", idx)
tl_messages_messages_gen.go#L153: return fmt.Errorf("unable to encode messages.messages#8c718e87: field chats element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L159: return fmt.Errorf("unable to encode messages.messages#8c718e87: field users element with index %d is nil", idx)
tl_messages_messages_gen.go#L162: return fmt.Errorf("unable to encode messages.messages#8c718e87: field users element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L201: return fmt.Errorf("can't decode messages.messages#8c718e87 to nil")
tl_messages_messages_gen.go#L204: return fmt.Errorf("unable to decode messages.messages#8c718e87: %w", err)
tl_messages_messages_gen.go#L212: return fmt.Errorf("can't decode messages.messages#8c718e87 to nil")
tl_messages_messages_gen.go#L217: return fmt.Errorf("unable to decode messages.messages#8c718e87: field messages: %w", err)
tl_messages_messages_gen.go#L222: return fmt.Errorf("unable to decode messages.messages#8c718e87: field messages: %w", err)
tl_messages_messages_gen.go#L230: return fmt.Errorf("unable to decode messages.messages#8c718e87: field chats: %w", err)
tl_messages_messages_gen.go#L235: return fmt.Errorf("unable to decode messages.messages#8c718e87: field chats: %w", err)
tl_messages_messages_gen.go#L243: return fmt.Errorf("unable to decode messages.messages#8c718e87: field users: %w", err)
tl_messages_messages_gen.go#L248: return fmt.Errorf("unable to decode messages.messages#8c718e87: field users: %w", err)
tl_messages_messages_gen.go#L435: return fmt.Errorf("can't encode messages.messagesSlice#3a54685e as nil")
tl_messages_messages_gen.go#L444: return fmt.Errorf("can't encode messages.messagesSlice#3a54685e as nil")
tl_messages_messages_gen.go#L456: return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field flags: %w", err)
tl_messages_messages_gen.go#L468: return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field messages element with index %d is nil", idx)
tl_messages_messages_gen.go#L471: return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field messages element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L477: return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field chats element with index %d is nil", idx)
tl_messages_messages_gen.go#L480: return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field chats element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L486: return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field users element with index %d is nil", idx)
tl_messages_messages_gen.go#L489: return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field users element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L579: return fmt.Errorf("can't decode messages.messagesSlice#3a54685e to nil")
tl_messages_messages_gen.go#L582: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: %w", err)
tl_messages_messages_gen.go#L590: return fmt.Errorf("can't decode messages.messagesSlice#3a54685e to nil")
tl_messages_messages_gen.go#L594: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field flags: %w", err)
tl_messages_messages_gen.go#L601: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field count: %w", err)
tl_messages_messages_gen.go#L608: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field next_rate: %w", err)
tl_messages_messages_gen.go#L615: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field offset_id_offset: %w", err)
tl_messages_messages_gen.go#L622: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field messages: %w", err)
tl_messages_messages_gen.go#L627: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field messages: %w", err)
tl_messages_messages_gen.go#L635: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field chats: %w", err)
tl_messages_messages_gen.go#L640: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field chats: %w", err)
tl_messages_messages_gen.go#L648: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field users: %w", err)
tl_messages_messages_gen.go#L653: return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field users: %w", err)
tl_messages_messages_gen.go#L834: return fmt.Errorf("can't encode messages.channelMessages#64479808 as nil")
tl_messages_messages_gen.go#L843: return fmt.Errorf("can't encode messages.channelMessages#64479808 as nil")
tl_messages_messages_gen.go#L852: return fmt.Errorf("unable to encode messages.channelMessages#64479808: field flags: %w", err)
tl_messages_messages_gen.go#L862: return fmt.Errorf("unable to encode messages.channelMessages#64479808: field messages element with index %d is nil", idx)
tl_messages_messages_gen.go#L865: return fmt.Errorf("unable to encode messages.channelMessages#64479808: field messages element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L871: return fmt.Errorf("unable to encode messages.channelMessages#64479808: field chats element with index %d is nil", idx)
tl_messages_messages_gen.go#L874: return fmt.Errorf("unable to encode messages.channelMessages#64479808: field chats element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L880: return fmt.Errorf("unable to encode messages.channelMessages#64479808: field users element with index %d is nil", idx)
tl_messages_messages_gen.go#L883: return fmt.Errorf("unable to encode messages.channelMessages#64479808: field users element with index %d: %w", idx, err)
tl_messages_messages_gen.go#L963: return fmt.Errorf("can't decode messages.channelMessages#64479808 to nil")
tl_messages_messages_gen.go#L966: return fmt.Errorf("unable to decode messages.channelMessages#64479808: %w", err)
tl_messages_messages_gen.go#L974: return fmt.Errorf("can't decode messages.channelMessages#64479808 to nil")
tl_messages_messages_gen.go#L978: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field flags: %w", err)
tl_messages_messages_gen.go#L985: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field pts: %w", err)
tl_messages_messages_gen.go#L992: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field count: %w", err)
tl_messages_messages_gen.go#L999: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field offset_id_offset: %w", err)
tl_messages_messages_gen.go#L1006: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field messages: %w", err)
tl_messages_messages_gen.go#L1011: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field messages: %w", err)
tl_messages_messages_gen.go#L1019: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field chats: %w", err)
tl_messages_messages_gen.go#L1024: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field chats: %w", err)
tl_messages_messages_gen.go#L1032: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field users: %w", err)
tl_messages_messages_gen.go#L1037: return fmt.Errorf("unable to decode messages.channelMessages#64479808: field users: %w", err)
tl_messages_messages_gen.go#L1131: return fmt.Errorf("can't encode messages.messagesNotModified#74535f21 as nil")
tl_messages_messages_gen.go#L1140: return fmt.Errorf("can't encode messages.messagesNotModified#74535f21 as nil")
tl_messages_messages_gen.go#L1154: return fmt.Errorf("can't decode messages.messagesNotModified#74535f21 to nil")
tl_messages_messages_gen.go#L1157: return fmt.Errorf("unable to decode messages.messagesNotModified#74535f21: %w", err)
tl_messages_messages_gen.go#L1165: return fmt.Errorf("can't decode messages.messagesNotModified#74535f21 to nil")
tl_messages_messages_gen.go#L1170: return fmt.Errorf("unable to decode messages.messagesNotModified#74535f21: field count: %w", err)
tl_messages_messages_gen.go#L1292: return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", err)
tl_messages_messages_gen.go#L1299: return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", err)
tl_messages_messages_gen.go#L1306: return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", err)
tl_messages_messages_gen.go#L1313: return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", err)
tl_messages_messages_gen.go#L1317: return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", bin.NewUnexpectedID(id))
tl_messages_messages_gen.go#L1329: return fmt.Errorf("unable to decode MessagesMessagesBox to nil")
tl_messages_messages_gen.go#L1333: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_messages_gen.go#L1342: return fmt.Errorf("unable to encode MessagesMessagesClass as nil")
tl_messages_migrate_chat_gen.go#L108: return fmt.Errorf("can't encode messages.migrateChat#15a3b8e3 as nil")
tl_messages_migrate_chat_gen.go#L117: return fmt.Errorf("can't encode messages.migrateChat#15a3b8e3 as nil")
tl_messages_migrate_chat_gen.go#L131: return fmt.Errorf("can't decode messages.migrateChat#15a3b8e3 to nil")
tl_messages_migrate_chat_gen.go#L134: return fmt.Errorf("unable to decode messages.migrateChat#15a3b8e3: %w", err)
tl_messages_migrate_chat_gen.go#L142: return fmt.Errorf("can't decode messages.migrateChat#15a3b8e3 to nil")
tl_messages_migrate_chat_gen.go#L147: return fmt.Errorf("unable to decode messages.migrateChat#15a3b8e3: field chat_id: %w", err)
tl_messages_peer_dialogs_gen.go#L152: return fmt.Errorf("can't encode messages.peerDialogs#3371c354 as nil")
tl_messages_peer_dialogs_gen.go#L161: return fmt.Errorf("can't encode messages.peerDialogs#3371c354 as nil")
tl_messages_peer_dialogs_gen.go#L166: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field dialogs element with index %d is nil", idx)
tl_messages_peer_dialogs_gen.go#L169: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field dialogs element with index %d: %w", idx, err)
tl_messages_peer_dialogs_gen.go#L175: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field messages element with index %d is nil", idx)
tl_messages_peer_dialogs_gen.go#L178: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field messages element with index %d: %w", idx, err)
tl_messages_peer_dialogs_gen.go#L184: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field chats element with index %d is nil", idx)
tl_messages_peer_dialogs_gen.go#L187: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field chats element with index %d: %w", idx, err)
tl_messages_peer_dialogs_gen.go#L193: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field users element with index %d is nil", idx)
tl_messages_peer_dialogs_gen.go#L196: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field users element with index %d: %w", idx, err)
tl_messages_peer_dialogs_gen.go#L200: return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field state: %w", err)
tl_messages_peer_dialogs_gen.go#L253: return fmt.Errorf("can't decode messages.peerDialogs#3371c354 to nil")
tl_messages_peer_dialogs_gen.go#L256: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: %w", err)
tl_messages_peer_dialogs_gen.go#L264: return fmt.Errorf("can't decode messages.peerDialogs#3371c354 to nil")
tl_messages_peer_dialogs_gen.go#L269: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field dialogs: %w", err)
tl_messages_peer_dialogs_gen.go#L274: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field dialogs: %w", err)
tl_messages_peer_dialogs_gen.go#L282: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field messages: %w", err)
tl_messages_peer_dialogs_gen.go#L287: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field messages: %w", err)
tl_messages_peer_dialogs_gen.go#L295: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field chats: %w", err)
tl_messages_peer_dialogs_gen.go#L300: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field chats: %w", err)
tl_messages_peer_dialogs_gen.go#L308: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field users: %w", err)
tl_messages_peer_dialogs_gen.go#L313: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field users: %w", err)
tl_messages_peer_dialogs_gen.go#L320: return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field state: %w", err)
tl_messages_read_discussion_gen.go#L130: return fmt.Errorf("can't encode messages.readDiscussion#f731a9f4 as nil")
tl_messages_read_discussion_gen.go#L139: return fmt.Errorf("can't encode messages.readDiscussion#f731a9f4 as nil")
tl_messages_read_discussion_gen.go#L142: return fmt.Errorf("unable to encode messages.readDiscussion#f731a9f4: field peer is nil")
tl_messages_read_discussion_gen.go#L145: return fmt.Errorf("unable to encode messages.readDiscussion#f731a9f4: field peer: %w", err)
tl_messages_read_discussion_gen.go#L170: return fmt.Errorf("can't decode messages.readDiscussion#f731a9f4 to nil")
tl_messages_read_discussion_gen.go#L173: return fmt.Errorf("unable to decode messages.readDiscussion#f731a9f4: %w", err)
tl_messages_read_discussion_gen.go#L181: return fmt.Errorf("can't decode messages.readDiscussion#f731a9f4 to nil")
tl_messages_read_discussion_gen.go#L186: return fmt.Errorf("unable to decode messages.readDiscussion#f731a9f4: field peer: %w", err)
tl_messages_read_discussion_gen.go#L193: return fmt.Errorf("unable to decode messages.readDiscussion#f731a9f4: field msg_id: %w", err)
tl_messages_read_discussion_gen.go#L200: return fmt.Errorf("unable to decode messages.readDiscussion#f731a9f4: field read_max_id: %w", err)
tl_messages_read_encrypted_history_gen.go#L116: return fmt.Errorf("can't encode messages.readEncryptedHistory#7f4b690a as nil")
tl_messages_read_encrypted_history_gen.go#L125: return fmt.Errorf("can't encode messages.readEncryptedHistory#7f4b690a as nil")
tl_messages_read_encrypted_history_gen.go#L128: return fmt.Errorf("unable to encode messages.readEncryptedHistory#7f4b690a: field peer: %w", err)
tl_messages_read_encrypted_history_gen.go#L147: return fmt.Errorf("can't decode messages.readEncryptedHistory#7f4b690a to nil")
tl_messages_read_encrypted_history_gen.go#L150: return fmt.Errorf("unable to decode messages.readEncryptedHistory#7f4b690a: %w", err)
tl_messages_read_encrypted_history_gen.go#L158: return fmt.Errorf("can't decode messages.readEncryptedHistory#7f4b690a to nil")
tl_messages_read_encrypted_history_gen.go#L162: return fmt.Errorf("unable to decode messages.readEncryptedHistory#7f4b690a: field peer: %w", err)
tl_messages_read_encrypted_history_gen.go#L168: return fmt.Errorf("unable to decode messages.readEncryptedHistory#7f4b690a: field max_date: %w", err)
tl_messages_read_featured_stickers_gen.go#L105: return fmt.Errorf("can't encode messages.readFeaturedStickers#5b118126 as nil")
tl_messages_read_featured_stickers_gen.go#L114: return fmt.Errorf("can't encode messages.readFeaturedStickers#5b118126 as nil")
tl_messages_read_featured_stickers_gen.go#L131: return fmt.Errorf("can't decode messages.readFeaturedStickers#5b118126 to nil")
tl_messages_read_featured_stickers_gen.go#L134: return fmt.Errorf("unable to decode messages.readFeaturedStickers#5b118126: %w", err)
tl_messages_read_featured_stickers_gen.go#L142: return fmt.Errorf("can't decode messages.readFeaturedStickers#5b118126 to nil")
tl_messages_read_featured_stickers_gen.go#L147: return fmt.Errorf("unable to decode messages.readFeaturedStickers#5b118126: field id: %w", err)
tl_messages_read_featured_stickers_gen.go#L152: return fmt.Errorf("unable to decode messages.readFeaturedStickers#5b118126: field id: %w", err)
tl_messages_read_history_gen.go#L117: return fmt.Errorf("can't encode messages.readHistory#e306d3a as nil")
tl_messages_read_history_gen.go#L126: return fmt.Errorf("can't encode messages.readHistory#e306d3a as nil")
tl_messages_read_history_gen.go#L129: return fmt.Errorf("unable to encode messages.readHistory#e306d3a: field peer is nil")
tl_messages_read_history_gen.go#L132: return fmt.Errorf("unable to encode messages.readHistory#e306d3a: field peer: %w", err)
tl_messages_read_history_gen.go#L151: return fmt.Errorf("can't decode messages.readHistory#e306d3a to nil")
tl_messages_read_history_gen.go#L154: return fmt.Errorf("unable to decode messages.readHistory#e306d3a: %w", err)
tl_messages_read_history_gen.go#L162: return fmt.Errorf("can't decode messages.readHistory#e306d3a to nil")
tl_messages_read_history_gen.go#L167: return fmt.Errorf("unable to decode messages.readHistory#e306d3a: field peer: %w", err)
tl_messages_read_history_gen.go#L174: return fmt.Errorf("unable to decode messages.readHistory#e306d3a: field max_id: %w", err)
tl_messages_read_mentions_gen.go#L105: return fmt.Errorf("can't encode messages.readMentions#f0189d3 as nil")
tl_messages_read_mentions_gen.go#L114: return fmt.Errorf("can't encode messages.readMentions#f0189d3 as nil")
tl_messages_read_mentions_gen.go#L117: return fmt.Errorf("unable to encode messages.readMentions#f0189d3: field peer is nil")
tl_messages_read_mentions_gen.go#L120: return fmt.Errorf("unable to encode messages.readMentions#f0189d3: field peer: %w", err)
tl_messages_read_mentions_gen.go#L133: return fmt.Errorf("can't decode messages.readMentions#f0189d3 to nil")
tl_messages_read_mentions_gen.go#L136: return fmt.Errorf("unable to decode messages.readMentions#f0189d3: %w", err)
tl_messages_read_mentions_gen.go#L144: return fmt.Errorf("can't decode messages.readMentions#f0189d3 to nil")
tl_messages_read_mentions_gen.go#L149: return fmt.Errorf("unable to decode messages.readMentions#f0189d3: field peer: %w", err)
tl_messages_read_message_contents_gen.go#L106: return fmt.Errorf("can't encode messages.readMessageContents#36a73f77 as nil")
tl_messages_read_message_contents_gen.go#L115: return fmt.Errorf("can't encode messages.readMessageContents#36a73f77 as nil")
tl_messages_read_message_contents_gen.go#L132: return fmt.Errorf("can't decode messages.readMessageContents#36a73f77 to nil")
tl_messages_read_message_contents_gen.go#L135: return fmt.Errorf("unable to decode messages.readMessageContents#36a73f77: %w", err)
tl_messages_read_message_contents_gen.go#L143: return fmt.Errorf("can't decode messages.readMessageContents#36a73f77 to nil")
tl_messages_read_message_contents_gen.go#L148: return fmt.Errorf("unable to decode messages.readMessageContents#36a73f77: field id: %w", err)
tl_messages_read_message_contents_gen.go#L153: return fmt.Errorf("unable to decode messages.readMessageContents#36a73f77: field id: %w", err)
tl_messages_received_messages_gen.go#L105: return fmt.Errorf("can't encode messages.receivedMessages#5a954c0 as nil")
tl_messages_received_messages_gen.go#L114: return fmt.Errorf("can't encode messages.receivedMessages#5a954c0 as nil")
tl_messages_received_messages_gen.go#L128: return fmt.Errorf("can't decode messages.receivedMessages#5a954c0 to nil")
tl_messages_received_messages_gen.go#L131: return fmt.Errorf("unable to decode messages.receivedMessages#5a954c0: %w", err)
tl_messages_received_messages_gen.go#L139: return fmt.Errorf("can't decode messages.receivedMessages#5a954c0 to nil")
tl_messages_received_messages_gen.go#L144: return fmt.Errorf("unable to decode messages.receivedMessages#5a954c0: field max_id: %w", err)
tl_messages_received_queue_gen.go#L105: return fmt.Errorf("can't encode messages.receivedQueue#55a5bb66 as nil")
tl_messages_received_queue_gen.go#L114: return fmt.Errorf("can't encode messages.receivedQueue#55a5bb66 as nil")
tl_messages_received_queue_gen.go#L128: return fmt.Errorf("can't decode messages.receivedQueue#55a5bb66 to nil")
tl_messages_received_queue_gen.go#L131: return fmt.Errorf("unable to decode messages.receivedQueue#55a5bb66: %w", err)
tl_messages_received_queue_gen.go#L139: return fmt.Errorf("can't decode messages.receivedQueue#55a5bb66 to nil")
tl_messages_received_queue_gen.go#L144: return fmt.Errorf("unable to decode messages.receivedQueue#55a5bb66: field max_qts: %w", err)
tl_messages_recent_stickers_gen.go#L88: return fmt.Errorf("can't encode messages.recentStickersNotModified#b17f890 as nil")
tl_messages_recent_stickers_gen.go#L97: return fmt.Errorf("can't encode messages.recentStickersNotModified#b17f890 as nil")
tl_messages_recent_stickers_gen.go#L105: return fmt.Errorf("can't decode messages.recentStickersNotModified#b17f890 to nil")
tl_messages_recent_stickers_gen.go#L108: return fmt.Errorf("unable to decode messages.recentStickersNotModified#b17f890: %w", err)
tl_messages_recent_stickers_gen.go#L116: return fmt.Errorf("can't decode messages.recentStickersNotModified#b17f890 to nil")
tl_messages_recent_stickers_gen.go#L243: return fmt.Errorf("can't encode messages.recentStickers#22f3afb3 as nil")
tl_messages_recent_stickers_gen.go#L252: return fmt.Errorf("can't encode messages.recentStickers#22f3afb3 as nil")
tl_messages_recent_stickers_gen.go#L258: return fmt.Errorf("unable to encode messages.recentStickers#22f3afb3: field packs element with index %d: %w", idx, err)
tl_messages_recent_stickers_gen.go#L264: return fmt.Errorf("unable to encode messages.recentStickers#22f3afb3: field stickers element with index %d is nil", idx)
tl_messages_recent_stickers_gen.go#L267: return fmt.Errorf("unable to encode messages.recentStickers#22f3afb3: field stickers element with index %d: %w", idx, err)
tl_messages_recent_stickers_gen.go#L305: return fmt.Errorf("can't decode messages.recentStickers#22f3afb3 to nil")
tl_messages_recent_stickers_gen.go#L308: return fmt.Errorf("unable to decode messages.recentStickers#22f3afb3: %w", err)
tl_messages_recent_stickers_gen.go#L316: return fmt.Errorf("can't decode messages.recentStickers#22f3afb3 to nil")
tl_messages_recent_stickers_gen.go#L321: return fmt.Errorf("unable to decode messages.recentStickers#22f3afb3: field hash: %w", err)
tl_messages_recent_stickers_gen.go#L328: return fmt.Errorf("unable to decode messages.recentStickers#22f3afb3: field packs: %w", err)
tl_messages_recent_stickers_gen.go#L333: return fmt.Errorf("unable to decode messages.recentStickers#22f3afb3: field packs: %w", err)
tl_messages_recent_stickers_gen.go#L341: return fmt.Errorf("unable to decode messages.recentStickers#22f3afb3: field stickers: %w", err)
tl_messages_recent_stickers_gen.go#L346: return fmt.Errorf("unable to decode messages.recentStickers#22f3afb3: field stickers: %w", err)
tl_messages_recent_stickers_gen.go#L354: return fmt.Errorf("unable to decode messages.recentStickers#22f3afb3: field dates: %w", err)
tl_messages_recent_stickers_gen.go#L359: return fmt.Errorf("unable to decode messages.recentStickers#22f3afb3: field dates: %w", err)
tl_messages_recent_stickers_gen.go#L437: return nil, fmt.Errorf("unable to decode MessagesRecentStickersClass: %w", err)
tl_messages_recent_stickers_gen.go#L444: return nil, fmt.Errorf("unable to decode MessagesRecentStickersClass: %w", err)
tl_messages_recent_stickers_gen.go#L448: return nil, fmt.Errorf("unable to decode MessagesRecentStickersClass: %w", bin.NewUnexpectedID(id))
tl_messages_recent_stickers_gen.go#L460: return fmt.Errorf("unable to decode MessagesRecentStickersBox to nil")
tl_messages_recent_stickers_gen.go#L464: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_recent_stickers_gen.go#L473: return fmt.Errorf("unable to encode MessagesRecentStickersClass as nil")
tl_messages_reorder_pinned_dialogs_gen.go#L139: return fmt.Errorf("can't encode messages.reorderPinnedDialogs#3b1adf37 as nil")
tl_messages_reorder_pinned_dialogs_gen.go#L148: return fmt.Errorf("can't encode messages.reorderPinnedDialogs#3b1adf37 as nil")
tl_messages_reorder_pinned_dialogs_gen.go#L154: return fmt.Errorf("unable to encode messages.reorderPinnedDialogs#3b1adf37: field flags: %w", err)
tl_messages_reorder_pinned_dialogs_gen.go#L160: return fmt.Errorf("unable to encode messages.reorderPinnedDialogs#3b1adf37: field order element with index %d is nil", idx)
tl_messages_reorder_pinned_dialogs_gen.go#L163: return fmt.Errorf("unable to encode messages.reorderPinnedDialogs#3b1adf37: field order element with index %d: %w", idx, err)
tl_messages_reorder_pinned_dialogs_gen.go#L203: return fmt.Errorf("can't decode messages.reorderPinnedDialogs#3b1adf37 to nil")
tl_messages_reorder_pinned_dialogs_gen.go#L206: return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: %w", err)
tl_messages_reorder_pinned_dialogs_gen.go#L214: return fmt.Errorf("can't decode messages.reorderPinnedDialogs#3b1adf37 to nil")
tl_messages_reorder_pinned_dialogs_gen.go#L218: return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: field flags: %w", err)
tl_messages_reorder_pinned_dialogs_gen.go#L225: return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: field folder_id: %w", err)
tl_messages_reorder_pinned_dialogs_gen.go#L232: return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: field order: %w", err)
tl_messages_reorder_pinned_dialogs_gen.go#L237: return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: field order: %w", err)
tl_messages_reorder_sticker_sets_gen.go#L125: return fmt.Errorf("can't encode messages.reorderStickerSets#78337739 as nil")
tl_messages_reorder_sticker_sets_gen.go#L134: return fmt.Errorf("can't encode messages.reorderStickerSets#78337739 as nil")
tl_messages_reorder_sticker_sets_gen.go#L140: return fmt.Errorf("unable to encode messages.reorderStickerSets#78337739: field flags: %w", err)
tl_messages_reorder_sticker_sets_gen.go#L173: return fmt.Errorf("can't decode messages.reorderStickerSets#78337739 to nil")
tl_messages_reorder_sticker_sets_gen.go#L176: return fmt.Errorf("unable to decode messages.reorderStickerSets#78337739: %w", err)
tl_messages_reorder_sticker_sets_gen.go#L184: return fmt.Errorf("can't decode messages.reorderStickerSets#78337739 to nil")
tl_messages_reorder_sticker_sets_gen.go#L188: return fmt.Errorf("unable to decode messages.reorderStickerSets#78337739: field flags: %w", err)
tl_messages_reorder_sticker_sets_gen.go#L195: return fmt.Errorf("unable to decode messages.reorderStickerSets#78337739: field order: %w", err)
tl_messages_reorder_sticker_sets_gen.go#L200: return fmt.Errorf("unable to decode messages.reorderStickerSets#78337739: field order: %w", err)
tl_messages_report_encrypted_spam_gen.go#L105: return fmt.Errorf("can't encode messages.reportEncryptedSpam#4b0c8c0f as nil")
tl_messages_report_encrypted_spam_gen.go#L114: return fmt.Errorf("can't encode messages.reportEncryptedSpam#4b0c8c0f as nil")
tl_messages_report_encrypted_spam_gen.go#L117: return fmt.Errorf("unable to encode messages.reportEncryptedSpam#4b0c8c0f: field peer: %w", err)
tl_messages_report_encrypted_spam_gen.go#L130: return fmt.Errorf("can't decode messages.reportEncryptedSpam#4b0c8c0f to nil")
tl_messages_report_encrypted_spam_gen.go#L133: return fmt.Errorf("unable to decode messages.reportEncryptedSpam#4b0c8c0f: %w", err)
tl_messages_report_encrypted_spam_gen.go#L141: return fmt.Errorf("can't decode messages.reportEncryptedSpam#4b0c8c0f to nil")
tl_messages_report_encrypted_spam_gen.go#L145: return fmt.Errorf("unable to decode messages.reportEncryptedSpam#4b0c8c0f: field peer: %w", err)
tl_messages_report_gen.go#L138: return fmt.Errorf("can't encode messages.report#8953ab4e as nil")
tl_messages_report_gen.go#L147: return fmt.Errorf("can't encode messages.report#8953ab4e as nil")
tl_messages_report_gen.go#L150: return fmt.Errorf("unable to encode messages.report#8953ab4e: field peer is nil")
tl_messages_report_gen.go#L153: return fmt.Errorf("unable to encode messages.report#8953ab4e: field peer: %w", err)
tl_messages_report_gen.go#L160: return fmt.Errorf("unable to encode messages.report#8953ab4e: field reason is nil")
tl_messages_report_gen.go#L163: return fmt.Errorf("unable to encode messages.report#8953ab4e: field reason: %w", err)
tl_messages_report_gen.go#L192: return fmt.Errorf("can't decode messages.report#8953ab4e to nil")
tl_messages_report_gen.go#L195: return fmt.Errorf("unable to decode messages.report#8953ab4e: %w", err)
tl_messages_report_gen.go#L203: return fmt.Errorf("can't decode messages.report#8953ab4e to nil")
tl_messages_report_gen.go#L208: return fmt.Errorf("unable to decode messages.report#8953ab4e: field peer: %w", err)
tl_messages_report_gen.go#L215: return fmt.Errorf("unable to decode messages.report#8953ab4e: field id: %w", err)
tl_messages_report_gen.go#L220: return fmt.Errorf("unable to decode messages.report#8953ab4e: field id: %w", err)
tl_messages_report_gen.go#L228: return fmt.Errorf("unable to decode messages.report#8953ab4e: field reason: %w", err)
tl_messages_report_gen.go#L235: return fmt.Errorf("unable to decode messages.report#8953ab4e: field message: %w", err)
tl_messages_report_spam_gen.go#L109: return fmt.Errorf("can't encode messages.reportSpam#cf1592db as nil")
tl_messages_report_spam_gen.go#L118: return fmt.Errorf("can't encode messages.reportSpam#cf1592db as nil")
tl_messages_report_spam_gen.go#L121: return fmt.Errorf("unable to encode messages.reportSpam#cf1592db: field peer is nil")
tl_messages_report_spam_gen.go#L124: return fmt.Errorf("unable to encode messages.reportSpam#cf1592db: field peer: %w", err)
tl_messages_report_spam_gen.go#L137: return fmt.Errorf("can't decode messages.reportSpam#cf1592db to nil")
tl_messages_report_spam_gen.go#L140: return fmt.Errorf("unable to decode messages.reportSpam#cf1592db: %w", err)
tl_messages_report_spam_gen.go#L148: return fmt.Errorf("can't decode messages.reportSpam#cf1592db to nil")
tl_messages_report_spam_gen.go#L153: return fmt.Errorf("unable to decode messages.reportSpam#cf1592db: field peer: %w", err)
tl_messages_request_encryption_gen.go#L131: return fmt.Errorf("can't encode messages.requestEncryption#f64daf43 as nil")
tl_messages_request_encryption_gen.go#L140: return fmt.Errorf("can't encode messages.requestEncryption#f64daf43 as nil")
tl_messages_request_encryption_gen.go#L143: return fmt.Errorf("unable to encode messages.requestEncryption#f64daf43: field user_id is nil")
tl_messages_request_encryption_gen.go#L146: return fmt.Errorf("unable to encode messages.requestEncryption#f64daf43: field user_id: %w", err)
tl_messages_request_encryption_gen.go#L171: return fmt.Errorf("can't decode messages.requestEncryption#f64daf43 to nil")
tl_messages_request_encryption_gen.go#L174: return fmt.Errorf("unable to decode messages.requestEncryption#f64daf43: %w", err)
tl_messages_request_encryption_gen.go#L182: return fmt.Errorf("can't decode messages.requestEncryption#f64daf43 to nil")
tl_messages_request_encryption_gen.go#L187: return fmt.Errorf("unable to decode messages.requestEncryption#f64daf43: field user_id: %w", err)
tl_messages_request_encryption_gen.go#L194: return fmt.Errorf("unable to decode messages.requestEncryption#f64daf43: field random_id: %w", err)
tl_messages_request_encryption_gen.go#L201: return fmt.Errorf("unable to decode messages.requestEncryption#f64daf43: field g_a: %w", err)
tl_messages_request_url_auth_gen.go#L171: return fmt.Errorf("can't encode messages.requestUrlAuth#198fb446 as nil")
tl_messages_request_url_auth_gen.go#L180: return fmt.Errorf("can't encode messages.requestUrlAuth#198fb446 as nil")
tl_messages_request_url_auth_gen.go#L195: return fmt.Errorf("unable to encode messages.requestUrlAuth#198fb446: field flags: %w", err)
tl_messages_request_url_auth_gen.go#L199: return fmt.Errorf("unable to encode messages.requestUrlAuth#198fb446: field peer is nil")
tl_messages_request_url_auth_gen.go#L202: return fmt.Errorf("unable to encode messages.requestUrlAuth#198fb446: field peer: %w", err)
tl_messages_request_url_auth_gen.go#L280: return fmt.Errorf("can't decode messages.requestUrlAuth#198fb446 to nil")
tl_messages_request_url_auth_gen.go#L283: return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: %w", err)
tl_messages_request_url_auth_gen.go#L291: return fmt.Errorf("can't decode messages.requestUrlAuth#198fb446 to nil")
tl_messages_request_url_auth_gen.go#L295: return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field flags: %w", err)
tl_messages_request_url_auth_gen.go#L301: return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field peer: %w", err)
tl_messages_request_url_auth_gen.go#L308: return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field msg_id: %w", err)
tl_messages_request_url_auth_gen.go#L315: return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field button_id: %w", err)
tl_messages_request_url_auth_gen.go#L322: return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field url: %w", err)
tl_messages_save_draft_gen.go#L176: return fmt.Errorf("can't encode messages.saveDraft#bc39e14b as nil")
tl_messages_save_draft_gen.go#L185: return fmt.Errorf("can't encode messages.saveDraft#bc39e14b as nil")
tl_messages_save_draft_gen.go#L197: return fmt.Errorf("unable to encode messages.saveDraft#bc39e14b: field flags: %w", err)
tl_messages_save_draft_gen.go#L203: return fmt.Errorf("unable to encode messages.saveDraft#bc39e14b: field peer is nil")
tl_messages_save_draft_gen.go#L206: return fmt.Errorf("unable to encode messages.saveDraft#bc39e14b: field peer: %w", err)
tl_messages_save_draft_gen.go#L213: return fmt.Errorf("unable to encode messages.saveDraft#bc39e14b: field entities element with index %d is nil", idx)
tl_messages_save_draft_gen.go#L216: return fmt.Errorf("unable to encode messages.saveDraft#bc39e14b: field entities element with index %d: %w", idx, err)
tl_messages_save_draft_gen.go#L290: return fmt.Errorf("can't decode messages.saveDraft#bc39e14b to nil")
tl_messages_save_draft_gen.go#L293: return fmt.Errorf("unable to decode messages.saveDraft#bc39e14b: %w", err)
tl_messages_save_draft_gen.go#L301: return fmt.Errorf("can't decode messages.saveDraft#bc39e14b to nil")
tl_messages_save_draft_gen.go#L305: return fmt.Errorf("unable to decode messages.saveDraft#bc39e14b: field flags: %w", err)
tl_messages_save_draft_gen.go#L312: return fmt.Errorf("unable to decode messages.saveDraft#bc39e14b: field reply_to_msg_id: %w", err)
tl_messages_save_draft_gen.go#L319: return fmt.Errorf("unable to decode messages.saveDraft#bc39e14b: field peer: %w", err)
tl_messages_save_draft_gen.go#L326: return fmt.Errorf("unable to decode messages.saveDraft#bc39e14b: field message: %w", err)
tl_messages_save_draft_gen.go#L333: return fmt.Errorf("unable to decode messages.saveDraft#bc39e14b: field entities: %w", err)
tl_messages_save_draft_gen.go#L338: return fmt.Errorf("unable to decode messages.saveDraft#bc39e14b: field entities: %w", err)
tl_messages_save_gif_gen.go#L116: return fmt.Errorf("can't encode messages.saveGif#327a30cb as nil")
tl_messages_save_gif_gen.go#L125: return fmt.Errorf("can't encode messages.saveGif#327a30cb as nil")
tl_messages_save_gif_gen.go#L128: return fmt.Errorf("unable to encode messages.saveGif#327a30cb: field id is nil")
tl_messages_save_gif_gen.go#L131: return fmt.Errorf("unable to encode messages.saveGif#327a30cb: field id: %w", err)
tl_messages_save_gif_gen.go#L155: return fmt.Errorf("can't decode messages.saveGif#327a30cb to nil")
tl_messages_save_gif_gen.go#L158: return fmt.Errorf("unable to decode messages.saveGif#327a30cb: %w", err)
tl_messages_save_gif_gen.go#L166: return fmt.Errorf("can't decode messages.saveGif#327a30cb to nil")
tl_messages_save_gif_gen.go#L171: return fmt.Errorf("unable to decode messages.saveGif#327a30cb: field id: %w", err)
tl_messages_save_gif_gen.go#L178: return fmt.Errorf("unable to decode messages.saveGif#327a30cb: field unsave: %w", err)
tl_messages_save_recent_sticker_gen.go#L136: return fmt.Errorf("can't encode messages.saveRecentSticker#392718f8 as nil")
tl_messages_save_recent_sticker_gen.go#L145: return fmt.Errorf("can't encode messages.saveRecentSticker#392718f8 as nil")
tl_messages_save_recent_sticker_gen.go#L151: return fmt.Errorf("unable to encode messages.saveRecentSticker#392718f8: field flags: %w", err)
tl_messages_save_recent_sticker_gen.go#L154: return fmt.Errorf("unable to encode messages.saveRecentSticker#392718f8: field id is nil")
tl_messages_save_recent_sticker_gen.go#L157: return fmt.Errorf("unable to encode messages.saveRecentSticker#392718f8: field id: %w", err)
tl_messages_save_recent_sticker_gen.go#L197: return fmt.Errorf("can't decode messages.saveRecentSticker#392718f8 to nil")
tl_messages_save_recent_sticker_gen.go#L200: return fmt.Errorf("unable to decode messages.saveRecentSticker#392718f8: %w", err)
tl_messages_save_recent_sticker_gen.go#L208: return fmt.Errorf("can't decode messages.saveRecentSticker#392718f8 to nil")
tl_messages_save_recent_sticker_gen.go#L212: return fmt.Errorf("unable to decode messages.saveRecentSticker#392718f8: field flags: %w", err)
tl_messages_save_recent_sticker_gen.go#L219: return fmt.Errorf("unable to decode messages.saveRecentSticker#392718f8: field id: %w", err)
tl_messages_save_recent_sticker_gen.go#L226: return fmt.Errorf("unable to decode messages.saveRecentSticker#392718f8: field unsave: %w", err)
tl_messages_saved_gifs_gen.go#L88: return fmt.Errorf("can't encode messages.savedGifsNotModified#e8025ca2 as nil")
tl_messages_saved_gifs_gen.go#L97: return fmt.Errorf("can't encode messages.savedGifsNotModified#e8025ca2 as nil")
tl_messages_saved_gifs_gen.go#L105: return fmt.Errorf("can't decode messages.savedGifsNotModified#e8025ca2 to nil")
tl_messages_saved_gifs_gen.go#L108: return fmt.Errorf("unable to decode messages.savedGifsNotModified#e8025ca2: %w", err)
tl_messages_saved_gifs_gen.go#L116: return fmt.Errorf("can't decode messages.savedGifsNotModified#e8025ca2 to nil")
tl_messages_saved_gifs_gen.go#L221: return fmt.Errorf("can't encode messages.savedGifs#2e0709a5 as nil")
tl_messages_saved_gifs_gen.go#L230: return fmt.Errorf("can't encode messages.savedGifs#2e0709a5 as nil")
tl_messages_saved_gifs_gen.go#L236: return fmt.Errorf("unable to encode messages.savedGifs#2e0709a5: field gifs element with index %d is nil", idx)
tl_messages_saved_gifs_gen.go#L239: return fmt.Errorf("unable to encode messages.savedGifs#2e0709a5: field gifs element with index %d: %w", idx, err)
tl_messages_saved_gifs_gen.go#L263: return fmt.Errorf("can't decode messages.savedGifs#2e0709a5 to nil")
tl_messages_saved_gifs_gen.go#L266: return fmt.Errorf("unable to decode messages.savedGifs#2e0709a5: %w", err)
tl_messages_saved_gifs_gen.go#L274: return fmt.Errorf("can't decode messages.savedGifs#2e0709a5 to nil")
tl_messages_saved_gifs_gen.go#L279: return fmt.Errorf("unable to decode messages.savedGifs#2e0709a5: field hash: %w", err)
tl_messages_saved_gifs_gen.go#L286: return fmt.Errorf("unable to decode messages.savedGifs#2e0709a5: field gifs: %w", err)
tl_messages_saved_gifs_gen.go#L291: return fmt.Errorf("unable to decode messages.savedGifs#2e0709a5: field gifs: %w", err)
tl_messages_saved_gifs_gen.go#L369: return nil, fmt.Errorf("unable to decode MessagesSavedGifsClass: %w", err)
tl_messages_saved_gifs_gen.go#L376: return nil, fmt.Errorf("unable to decode MessagesSavedGifsClass: %w", err)
tl_messages_saved_gifs_gen.go#L380: return nil, fmt.Errorf("unable to decode MessagesSavedGifsClass: %w", bin.NewUnexpectedID(id))
tl_messages_saved_gifs_gen.go#L392: return fmt.Errorf("unable to decode MessagesSavedGifsBox to nil")
tl_messages_saved_gifs_gen.go#L396: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_saved_gifs_gen.go#L405: return fmt.Errorf("unable to encode MessagesSavedGifsClass as nil")
tl_messages_search_counter_gen.go#L140: return fmt.Errorf("can't encode messages.searchCounter#e844ebff as nil")
tl_messages_search_counter_gen.go#L149: return fmt.Errorf("can't encode messages.searchCounter#e844ebff as nil")
tl_messages_search_counter_gen.go#L155: return fmt.Errorf("unable to encode messages.searchCounter#e844ebff: field flags: %w", err)
tl_messages_search_counter_gen.go#L158: return fmt.Errorf("unable to encode messages.searchCounter#e844ebff: field filter is nil")
tl_messages_search_counter_gen.go#L161: return fmt.Errorf("unable to encode messages.searchCounter#e844ebff: field filter: %w", err)
tl_messages_search_counter_gen.go#L196: return fmt.Errorf("can't decode messages.searchCounter#e844ebff to nil")
tl_messages_search_counter_gen.go#L199: return fmt.Errorf("unable to decode messages.searchCounter#e844ebff: %w", err)
tl_messages_search_counter_gen.go#L207: return fmt.Errorf("can't decode messages.searchCounter#e844ebff to nil")
tl_messages_search_counter_gen.go#L211: return fmt.Errorf("unable to decode messages.searchCounter#e844ebff: field flags: %w", err)
tl_messages_search_counter_gen.go#L218: return fmt.Errorf("unable to decode messages.searchCounter#e844ebff: field filter: %w", err)
tl_messages_search_counter_gen.go#L225: return fmt.Errorf("unable to decode messages.searchCounter#e844ebff: field count: %w", err)
tl_messages_search_counter_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_messages_search_counter_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_messages_search_counter_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_messages_search_counter_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_messages_search_counter_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_messages_search_counter_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_messages_search_counter_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_messages_search_gen.go#L281: return fmt.Errorf("can't encode messages.search#c352eec as nil")
tl_messages_search_gen.go#L290: return fmt.Errorf("can't encode messages.search#c352eec as nil")
tl_messages_search_gen.go#L299: return fmt.Errorf("unable to encode messages.search#c352eec: field flags: %w", err)
tl_messages_search_gen.go#L302: return fmt.Errorf("unable to encode messages.search#c352eec: field peer is nil")
tl_messages_search_gen.go#L305: return fmt.Errorf("unable to encode messages.search#c352eec: field peer: %w", err)
tl_messages_search_gen.go#L310: return fmt.Errorf("unable to encode messages.search#c352eec: field from_id is nil")
tl_messages_search_gen.go#L313: return fmt.Errorf("unable to encode messages.search#c352eec: field from_id: %w", err)
tl_messages_search_gen.go#L320: return fmt.Errorf("unable to encode messages.search#c352eec: field filter is nil")
tl_messages_search_gen.go#L323: return fmt.Errorf("unable to encode messages.search#c352eec: field filter: %w", err)
tl_messages_search_gen.go#L424: return fmt.Errorf("can't decode messages.search#c352eec to nil")
tl_messages_search_gen.go#L427: return fmt.Errorf("unable to decode messages.search#c352eec: %w", err)
tl_messages_search_gen.go#L435: return fmt.Errorf("can't decode messages.search#c352eec to nil")
tl_messages_search_gen.go#L439: return fmt.Errorf("unable to decode messages.search#c352eec: field flags: %w", err)
tl_messages_search_gen.go#L445: return fmt.Errorf("unable to decode messages.search#c352eec: field peer: %w", err)
tl_messages_search_gen.go#L452: return fmt.Errorf("unable to decode messages.search#c352eec: field q: %w", err)
tl_messages_search_gen.go#L459: return fmt.Errorf("unable to decode messages.search#c352eec: field from_id: %w", err)
tl_messages_search_gen.go#L466: return fmt.Errorf("unable to decode messages.search#c352eec: field top_msg_id: %w", err)
tl_messages_search_gen.go#L473: return fmt.Errorf("unable to decode messages.search#c352eec: field filter: %w", err)
tl_messages_search_gen.go#L480: return fmt.Errorf("unable to decode messages.search#c352eec: field min_date: %w", err)
tl_messages_search_gen.go#L487: return fmt.Errorf("unable to decode messages.search#c352eec: field max_date: %w", err)
tl_messages_search_gen.go#L494: return fmt.Errorf("unable to decode messages.search#c352eec: field offset_id: %w", err)
tl_messages_search_gen.go#L501: return fmt.Errorf("unable to decode messages.search#c352eec: field add_offset: %w", err)
tl_messages_search_gen.go#L508: return fmt.Errorf("unable to decode messages.search#c352eec: field limit: %w", err)
tl_messages_search_gen.go#L515: return fmt.Errorf("unable to decode messages.search#c352eec: field max_id: %w", err)
tl_messages_search_gen.go#L522: return fmt.Errorf("unable to decode messages.search#c352eec: field min_id: %w", err)
tl_messages_search_gen.go#L529: return fmt.Errorf("unable to decode messages.search#c352eec: field hash: %w", err)
tl_messages_search_global_gen.go#L224: return fmt.Errorf("can't encode messages.searchGlobal#4bc6589a as nil")
tl_messages_search_global_gen.go#L233: return fmt.Errorf("can't encode messages.searchGlobal#4bc6589a as nil")
tl_messages_search_global_gen.go#L239: return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field flags: %w", err)
tl_messages_search_global_gen.go#L246: return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field filter is nil")
tl_messages_search_global_gen.go#L249: return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field filter: %w", err)
tl_messages_search_global_gen.go#L255: return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field offset_peer is nil")
tl_messages_search_global_gen.go#L258: return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field offset_peer: %w", err)
tl_messages_search_global_gen.go#L323: return fmt.Errorf("can't decode messages.searchGlobal#4bc6589a to nil")
tl_messages_search_global_gen.go#L326: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: %w", err)
tl_messages_search_global_gen.go#L334: return fmt.Errorf("can't decode messages.searchGlobal#4bc6589a to nil")
tl_messages_search_global_gen.go#L338: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field flags: %w", err)
tl_messages_search_global_gen.go#L344: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field folder_id: %w", err)
tl_messages_search_global_gen.go#L351: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field q: %w", err)
tl_messages_search_global_gen.go#L358: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field filter: %w", err)
tl_messages_search_global_gen.go#L365: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field min_date: %w", err)
tl_messages_search_global_gen.go#L372: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field max_date: %w", err)
tl_messages_search_global_gen.go#L379: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field offset_rate: %w", err)
tl_messages_search_global_gen.go#L386: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field offset_peer: %w", err)
tl_messages_search_global_gen.go#L393: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field offset_id: %w", err)
tl_messages_search_global_gen.go#L400: return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field limit: %w", err)
tl_messages_search_sticker_sets_gen.go#L139: return fmt.Errorf("can't encode messages.searchStickerSets#c2b7d08b as nil")
tl_messages_search_sticker_sets_gen.go#L148: return fmt.Errorf("can't encode messages.searchStickerSets#c2b7d08b as nil")
tl_messages_search_sticker_sets_gen.go#L154: return fmt.Errorf("unable to encode messages.searchStickerSets#c2b7d08b: field flags: %w", err)
tl_messages_search_sticker_sets_gen.go#L190: return fmt.Errorf("can't decode messages.searchStickerSets#c2b7d08b to nil")
tl_messages_search_sticker_sets_gen.go#L193: return fmt.Errorf("unable to decode messages.searchStickerSets#c2b7d08b: %w", err)
tl_messages_search_sticker_sets_gen.go#L201: return fmt.Errorf("can't decode messages.searchStickerSets#c2b7d08b to nil")
tl_messages_search_sticker_sets_gen.go#L205: return fmt.Errorf("unable to decode messages.searchStickerSets#c2b7d08b: field flags: %w", err)
tl_messages_search_sticker_sets_gen.go#L212: return fmt.Errorf("unable to decode messages.searchStickerSets#c2b7d08b: field q: %w", err)
tl_messages_search_sticker_sets_gen.go#L219: return fmt.Errorf("unable to decode messages.searchStickerSets#c2b7d08b: field hash: %w", err)
tl_messages_send_encrypted_file_gen.go#L162: return fmt.Errorf("can't encode messages.sendEncryptedFile#5559481d as nil")
tl_messages_send_encrypted_file_gen.go#L171: return fmt.Errorf("can't encode messages.sendEncryptedFile#5559481d as nil")
tl_messages_send_encrypted_file_gen.go#L177: return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field flags: %w", err)
tl_messages_send_encrypted_file_gen.go#L180: return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field peer: %w", err)
tl_messages_send_encrypted_file_gen.go#L185: return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field file is nil")
tl_messages_send_encrypted_file_gen.go#L188: return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field file: %w", err)
tl_messages_send_encrypted_file_gen.go#L237: return fmt.Errorf("can't decode messages.sendEncryptedFile#5559481d to nil")
tl_messages_send_encrypted_file_gen.go#L240: return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: %w", err)
tl_messages_send_encrypted_file_gen.go#L248: return fmt.Errorf("can't decode messages.sendEncryptedFile#5559481d to nil")
tl_messages_send_encrypted_file_gen.go#L252: return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field flags: %w", err)
tl_messages_send_encrypted_file_gen.go#L258: return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field peer: %w", err)
tl_messages_send_encrypted_file_gen.go#L264: return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field random_id: %w", err)
tl_messages_send_encrypted_file_gen.go#L271: return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field data: %w", err)
tl_messages_send_encrypted_file_gen.go#L278: return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field file: %w", err)
tl_messages_send_encrypted_gen.go#L151: return fmt.Errorf("can't encode messages.sendEncrypted#44fa7a15 as nil")
tl_messages_send_encrypted_gen.go#L160: return fmt.Errorf("can't encode messages.sendEncrypted#44fa7a15 as nil")
tl_messages_send_encrypted_gen.go#L166: return fmt.Errorf("unable to encode messages.sendEncrypted#44fa7a15: field flags: %w", err)
tl_messages_send_encrypted_gen.go#L169: return fmt.Errorf("unable to encode messages.sendEncrypted#44fa7a15: field peer: %w", err)
tl_messages_send_encrypted_gen.go#L210: return fmt.Errorf("can't decode messages.sendEncrypted#44fa7a15 to nil")
tl_messages_send_encrypted_gen.go#L213: return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: %w", err)
tl_messages_send_encrypted_gen.go#L221: return fmt.Errorf("can't decode messages.sendEncrypted#44fa7a15 to nil")
tl_messages_send_encrypted_gen.go#L225: return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: field flags: %w", err)
tl_messages_send_encrypted_gen.go#L231: return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: field peer: %w", err)
tl_messages_send_encrypted_gen.go#L237: return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: field random_id: %w", err)
tl_messages_send_encrypted_gen.go#L244: return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: field data: %w", err)
tl_messages_send_encrypted_service_gen.go#L131: return fmt.Errorf("can't encode messages.sendEncryptedService#32d439a4 as nil")
tl_messages_send_encrypted_service_gen.go#L140: return fmt.Errorf("can't encode messages.sendEncryptedService#32d439a4 as nil")
tl_messages_send_encrypted_service_gen.go#L143: return fmt.Errorf("unable to encode messages.sendEncryptedService#32d439a4: field peer: %w", err)
tl_messages_send_encrypted_service_gen.go#L168: return fmt.Errorf("can't decode messages.sendEncryptedService#32d439a4 to nil")
tl_messages_send_encrypted_service_gen.go#L171: return fmt.Errorf("unable to decode messages.sendEncryptedService#32d439a4: %w", err)
tl_messages_send_encrypted_service_gen.go#L179: return fmt.Errorf("can't decode messages.sendEncryptedService#32d439a4 to nil")
tl_messages_send_encrypted_service_gen.go#L183: return fmt.Errorf("unable to decode messages.sendEncryptedService#32d439a4: field peer: %w", err)
tl_messages_send_encrypted_service_gen.go#L189: return fmt.Errorf("unable to decode messages.sendEncryptedService#32d439a4: field random_id: %w", err)
tl_messages_send_encrypted_service_gen.go#L196: return fmt.Errorf("unable to decode messages.sendEncryptedService#32d439a4: field data: %w", err)
tl_messages_send_inline_bot_result_gen.go#L245: return fmt.Errorf("can't encode messages.sendInlineBotResult#220815b0 as nil")
tl_messages_send_inline_bot_result_gen.go#L254: return fmt.Errorf("can't encode messages.sendInlineBotResult#220815b0 as nil")
tl_messages_send_inline_bot_result_gen.go#L275: return fmt.Errorf("unable to encode messages.sendInlineBotResult#220815b0: field flags: %w", err)
tl_messages_send_inline_bot_result_gen.go#L278: return fmt.Errorf("unable to encode messages.sendInlineBotResult#220815b0: field peer is nil")
tl_messages_send_inline_bot_result_gen.go#L281: return fmt.Errorf("unable to encode messages.sendInlineBotResult#220815b0: field peer: %w", err)
tl_messages_send_inline_bot_result_gen.go#L412: return fmt.Errorf("can't decode messages.sendInlineBotResult#220815b0 to nil")
tl_messages_send_inline_bot_result_gen.go#L415: return fmt.Errorf("unable to decode messages.sendInlineBotResult#220815b0: %w", err)
tl_messages_send_inline_bot_result_gen.go#L423: return fmt.Errorf("can't decode messages.sendInlineBotResult#220815b0 to nil")
tl_messages_send_inline_bot_result_gen.go#L427: return fmt.Errorf("unable to decode messages.sendInlineBotResult#220815b0: field flags: %w", err)
tl_messages_send_inline_bot_result_gen.go#L437: return fmt.Errorf("unable to decode messages.sendInlineBotResult#220815b0: field peer: %w", err)
tl_messages_send_inline_bot_result_gen.go#L444: return fmt.Errorf("unable to decode messages.sendInlineBotResult#220815b0: field reply_to_msg_id: %w", err)
tl_messages_send_inline_bot_result_gen.go#L451: return fmt.Errorf("unable to decode messages.sendInlineBotResult#220815b0: field random_id: %w", err)
tl_messages_send_inline_bot_result_gen.go#L458: return fmt.Errorf("unable to decode messages.sendInlineBotResult#220815b0: field query_id: %w", err)
tl_messages_send_inline_bot_result_gen.go#L465: return fmt.Errorf("unable to decode messages.sendInlineBotResult#220815b0: field id: %w", err)
tl_messages_send_inline_bot_result_gen.go#L472: return fmt.Errorf("unable to decode messages.sendInlineBotResult#220815b0: field schedule_date: %w", err)
tl_messages_send_media_gen.go#L256: return fmt.Errorf("can't encode messages.sendMedia#3491eba9 as nil")
tl_messages_send_media_gen.go#L265: return fmt.Errorf("can't encode messages.sendMedia#3491eba9 as nil")
tl_messages_send_media_gen.go#L289: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field flags: %w", err)
tl_messages_send_media_gen.go#L292: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field peer is nil")
tl_messages_send_media_gen.go#L295: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field peer: %w", err)
tl_messages_send_media_gen.go#L301: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field media is nil")
tl_messages_send_media_gen.go#L304: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field media: %w", err)
tl_messages_send_media_gen.go#L310: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field reply_markup is nil")
tl_messages_send_media_gen.go#L313: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field reply_markup: %w", err)
tl_messages_send_media_gen.go#L320: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field entities element with index %d is nil", idx)
tl_messages_send_media_gen.go#L323: return fmt.Errorf("unable to encode messages.sendMedia#3491eba9: field entities element with index %d: %w", idx, err)
tl_messages_send_media_gen.go#L472: return fmt.Errorf("can't decode messages.sendMedia#3491eba9 to nil")
tl_messages_send_media_gen.go#L475: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: %w", err)
tl_messages_send_media_gen.go#L483: return fmt.Errorf("can't decode messages.sendMedia#3491eba9 to nil")
tl_messages_send_media_gen.go#L487: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field flags: %w", err)
tl_messages_send_media_gen.go#L496: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field peer: %w", err)
tl_messages_send_media_gen.go#L503: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field reply_to_msg_id: %w", err)
tl_messages_send_media_gen.go#L510: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field media: %w", err)
tl_messages_send_media_gen.go#L517: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field message: %w", err)
tl_messages_send_media_gen.go#L524: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field random_id: %w", err)
tl_messages_send_media_gen.go#L531: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field reply_markup: %w", err)
tl_messages_send_media_gen.go#L538: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field entities: %w", err)
tl_messages_send_media_gen.go#L543: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field entities: %w", err)
tl_messages_send_media_gen.go#L551: return fmt.Errorf("unable to decode messages.sendMedia#3491eba9: field schedule_date: %w", err)
tl_messages_send_message_gen.go#L257: return fmt.Errorf("can't encode messages.sendMessage#520c3870 as nil")
tl_messages_send_message_gen.go#L266: return fmt.Errorf("can't encode messages.sendMessage#520c3870 as nil")
tl_messages_send_message_gen.go#L293: return fmt.Errorf("unable to encode messages.sendMessage#520c3870: field flags: %w", err)
tl_messages_send_message_gen.go#L296: return fmt.Errorf("unable to encode messages.sendMessage#520c3870: field peer is nil")
tl_messages_send_message_gen.go#L299: return fmt.Errorf("unable to encode messages.sendMessage#520c3870: field peer: %w", err)
tl_messages_send_message_gen.go#L308: return fmt.Errorf("unable to encode messages.sendMessage#520c3870: field reply_markup is nil")
tl_messages_send_message_gen.go#L311: return fmt.Errorf("unable to encode messages.sendMessage#520c3870: field reply_markup: %w", err)
tl_messages_send_message_gen.go#L318: return fmt.Errorf("unable to encode messages.sendMessage#520c3870: field entities element with index %d is nil", idx)
tl_messages_send_message_gen.go#L321: return fmt.Errorf("unable to encode messages.sendMessage#520c3870: field entities element with index %d: %w", idx, err)
tl_messages_send_message_gen.go#L481: return fmt.Errorf("can't decode messages.sendMessage#520c3870 to nil")
tl_messages_send_message_gen.go#L484: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: %w", err)
tl_messages_send_message_gen.go#L492: return fmt.Errorf("can't decode messages.sendMessage#520c3870 to nil")
tl_messages_send_message_gen.go#L496: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field flags: %w", err)
tl_messages_send_message_gen.go#L506: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field peer: %w", err)
tl_messages_send_message_gen.go#L513: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field reply_to_msg_id: %w", err)
tl_messages_send_message_gen.go#L520: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field message: %w", err)
tl_messages_send_message_gen.go#L527: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field random_id: %w", err)
tl_messages_send_message_gen.go#L534: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field reply_markup: %w", err)
tl_messages_send_message_gen.go#L541: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field entities: %w", err)
tl_messages_send_message_gen.go#L546: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field entities: %w", err)
tl_messages_send_message_gen.go#L554: return fmt.Errorf("unable to decode messages.sendMessage#520c3870: field schedule_date: %w", err)
tl_messages_send_multi_media_gen.go#L200: return fmt.Errorf("can't encode messages.sendMultiMedia#cc0110cb as nil")
tl_messages_send_multi_media_gen.go#L209: return fmt.Errorf("can't encode messages.sendMultiMedia#cc0110cb as nil")
tl_messages_send_multi_media_gen.go#L227: return fmt.Errorf("unable to encode messages.sendMultiMedia#cc0110cb: field flags: %w", err)
tl_messages_send_multi_media_gen.go#L230: return fmt.Errorf("unable to encode messages.sendMultiMedia#cc0110cb: field peer is nil")
tl_messages_send_multi_media_gen.go#L233: return fmt.Errorf("unable to encode messages.sendMultiMedia#cc0110cb: field peer: %w", err)
tl_messages_send_multi_media_gen.go#L241: return fmt.Errorf("unable to encode messages.sendMultiMedia#cc0110cb: field multi_media element with index %d: %w", idx, err)
tl_messages_send_multi_media_gen.go#L341: return fmt.Errorf("can't decode messages.sendMultiMedia#cc0110cb to nil")
tl_messages_send_multi_media_gen.go#L344: return fmt.Errorf("unable to decode messages.sendMultiMedia#cc0110cb: %w", err)
tl_messages_send_multi_media_gen.go#L352: return fmt.Errorf("can't decode messages.sendMultiMedia#cc0110cb to nil")
tl_messages_send_multi_media_gen.go#L356: return fmt.Errorf("unable to decode messages.sendMultiMedia#cc0110cb: field flags: %w", err)
tl_messages_send_multi_media_gen.go#L365: return fmt.Errorf("unable to decode messages.sendMultiMedia#cc0110cb: field peer: %w", err)
tl_messages_send_multi_media_gen.go#L372: return fmt.Errorf("unable to decode messages.sendMultiMedia#cc0110cb: field reply_to_msg_id: %w", err)
tl_messages_send_multi_media_gen.go#L379: return fmt.Errorf("unable to decode messages.sendMultiMedia#cc0110cb: field multi_media: %w", err)
tl_messages_send_multi_media_gen.go#L384: return fmt.Errorf("unable to decode messages.sendMultiMedia#cc0110cb: field multi_media: %w", err)
tl_messages_send_multi_media_gen.go#L392: return fmt.Errorf("unable to decode messages.sendMultiMedia#cc0110cb: field schedule_date: %w", err)
tl_messages_send_scheduled_messages_gen.go#L116: return fmt.Errorf("can't encode messages.sendScheduledMessages#bd38850a as nil")
tl_messages_send_scheduled_messages_gen.go#L125: return fmt.Errorf("can't encode messages.sendScheduledMessages#bd38850a as nil")
tl_messages_send_scheduled_messages_gen.go#L128: return fmt.Errorf("unable to encode messages.sendScheduledMessages#bd38850a: field peer is nil")
tl_messages_send_scheduled_messages_gen.go#L131: return fmt.Errorf("unable to encode messages.sendScheduledMessages#bd38850a: field peer: %w", err)
tl_messages_send_scheduled_messages_gen.go#L153: return fmt.Errorf("can't decode messages.sendScheduledMessages#bd38850a to nil")
tl_messages_send_scheduled_messages_gen.go#L156: return fmt.Errorf("unable to decode messages.sendScheduledMessages#bd38850a: %w", err)
tl_messages_send_scheduled_messages_gen.go#L164: return fmt.Errorf("can't decode messages.sendScheduledMessages#bd38850a to nil")
tl_messages_send_scheduled_messages_gen.go#L169: return fmt.Errorf("unable to decode messages.sendScheduledMessages#bd38850a: field peer: %w", err)
tl_messages_send_scheduled_messages_gen.go#L176: return fmt.Errorf("unable to decode messages.sendScheduledMessages#bd38850a: field id: %w", err)
tl_messages_send_scheduled_messages_gen.go#L181: return fmt.Errorf("unable to decode messages.sendScheduledMessages#bd38850a: field id: %w", err)
tl_messages_send_screenshot_notification_gen.go#L127: return fmt.Errorf("can't encode messages.sendScreenshotNotification#c97df020 as nil")
tl_messages_send_screenshot_notification_gen.go#L136: return fmt.Errorf("can't encode messages.sendScreenshotNotification#c97df020 as nil")
tl_messages_send_screenshot_notification_gen.go#L139: return fmt.Errorf("unable to encode messages.sendScreenshotNotification#c97df020: field peer is nil")
tl_messages_send_screenshot_notification_gen.go#L142: return fmt.Errorf("unable to encode messages.sendScreenshotNotification#c97df020: field peer: %w", err)
tl_messages_send_screenshot_notification_gen.go#L167: return fmt.Errorf("can't decode messages.sendScreenshotNotification#c97df020 to nil")
tl_messages_send_screenshot_notification_gen.go#L170: return fmt.Errorf("unable to decode messages.sendScreenshotNotification#c97df020: %w", err)
tl_messages_send_screenshot_notification_gen.go#L178: return fmt.Errorf("can't decode messages.sendScreenshotNotification#c97df020 to nil")
tl_messages_send_screenshot_notification_gen.go#L183: return fmt.Errorf("unable to decode messages.sendScreenshotNotification#c97df020: field peer: %w", err)
tl_messages_send_screenshot_notification_gen.go#L190: return fmt.Errorf("unable to decode messages.sendScreenshotNotification#c97df020: field reply_to_msg_id: %w", err)
tl_messages_send_screenshot_notification_gen.go#L197: return fmt.Errorf("unable to decode messages.sendScreenshotNotification#c97df020: field random_id: %w", err)
tl_messages_send_vote_gen.go#L130: return fmt.Errorf("can't encode messages.sendVote#10ea6184 as nil")
tl_messages_send_vote_gen.go#L139: return fmt.Errorf("can't encode messages.sendVote#10ea6184 as nil")
tl_messages_send_vote_gen.go#L142: return fmt.Errorf("unable to encode messages.sendVote#10ea6184: field peer is nil")
tl_messages_send_vote_gen.go#L145: return fmt.Errorf("unable to encode messages.sendVote#10ea6184: field peer: %w", err)
tl_messages_send_vote_gen.go#L173: return fmt.Errorf("can't decode messages.sendVote#10ea6184 to nil")
tl_messages_send_vote_gen.go#L176: return fmt.Errorf("unable to decode messages.sendVote#10ea6184: %w", err)
tl_messages_send_vote_gen.go#L184: return fmt.Errorf("can't decode messages.sendVote#10ea6184 to nil")
tl_messages_send_vote_gen.go#L189: return fmt.Errorf("unable to decode messages.sendVote#10ea6184: field peer: %w", err)
tl_messages_send_vote_gen.go#L196: return fmt.Errorf("unable to decode messages.sendVote#10ea6184: field msg_id: %w", err)
tl_messages_send_vote_gen.go#L203: return fmt.Errorf("unable to decode messages.sendVote#10ea6184: field options: %w", err)
tl_messages_send_vote_gen.go#L208: return fmt.Errorf("unable to decode messages.sendVote#10ea6184: field options: %w", err)
tl_messages_sent_encrypted_message_gen.go#L105: return fmt.Errorf("can't encode messages.sentEncryptedMessage#560f8935 as nil")
tl_messages_sent_encrypted_message_gen.go#L114: return fmt.Errorf("can't encode messages.sentEncryptedMessage#560f8935 as nil")
tl_messages_sent_encrypted_message_gen.go#L128: return fmt.Errorf("can't decode messages.sentEncryptedMessage#560f8935 to nil")
tl_messages_sent_encrypted_message_gen.go#L131: return fmt.Errorf("unable to decode messages.sentEncryptedMessage#560f8935: %w", err)
tl_messages_sent_encrypted_message_gen.go#L139: return fmt.Errorf("can't decode messages.sentEncryptedMessage#560f8935 to nil")
tl_messages_sent_encrypted_message_gen.go#L144: return fmt.Errorf("unable to decode messages.sentEncryptedMessage#560f8935: field date: %w", err)
tl_messages_sent_encrypted_message_gen.go#L248: return fmt.Errorf("can't encode messages.sentEncryptedFile#9493ff32 as nil")
tl_messages_sent_encrypted_message_gen.go#L257: return fmt.Errorf("can't encode messages.sentEncryptedFile#9493ff32 as nil")
tl_messages_sent_encrypted_message_gen.go#L261: return fmt.Errorf("unable to encode messages.sentEncryptedFile#9493ff32: field file is nil")
tl_messages_sent_encrypted_message_gen.go#L264: return fmt.Errorf("unable to encode messages.sentEncryptedFile#9493ff32: field file: %w", err)
tl_messages_sent_encrypted_message_gen.go#L282: return fmt.Errorf("can't decode messages.sentEncryptedFile#9493ff32 to nil")
tl_messages_sent_encrypted_message_gen.go#L285: return fmt.Errorf("unable to decode messages.sentEncryptedFile#9493ff32: %w", err)
tl_messages_sent_encrypted_message_gen.go#L293: return fmt.Errorf("can't decode messages.sentEncryptedFile#9493ff32 to nil")
tl_messages_sent_encrypted_message_gen.go#L298: return fmt.Errorf("unable to decode messages.sentEncryptedFile#9493ff32: field date: %w", err)
tl_messages_sent_encrypted_message_gen.go#L305: return fmt.Errorf("unable to decode messages.sentEncryptedFile#9493ff32: field file: %w", err)
tl_messages_sent_encrypted_message_gen.go#L372: return nil, fmt.Errorf("unable to decode MessagesSentEncryptedMessageClass: %w", err)
tl_messages_sent_encrypted_message_gen.go#L379: return nil, fmt.Errorf("unable to decode MessagesSentEncryptedMessageClass: %w", err)
tl_messages_sent_encrypted_message_gen.go#L383: return nil, fmt.Errorf("unable to decode MessagesSentEncryptedMessageClass: %w", bin.NewUnexpectedID(id))
tl_messages_sent_encrypted_message_gen.go#L395: return fmt.Errorf("unable to decode MessagesSentEncryptedMessageBox to nil")
tl_messages_sent_encrypted_message_gen.go#L399: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_sent_encrypted_message_gen.go#L408: return fmt.Errorf("unable to encode MessagesSentEncryptedMessageClass as nil")
tl_messages_set_bot_callback_answer_gen.go#L170: return fmt.Errorf("can't encode messages.setBotCallbackAnswer#d58f130a as nil")
tl_messages_set_bot_callback_answer_gen.go#L179: return fmt.Errorf("can't encode messages.setBotCallbackAnswer#d58f130a as nil")
tl_messages_set_bot_callback_answer_gen.go#L191: return fmt.Errorf("unable to encode messages.setBotCallbackAnswer#d58f130a: field flags: %w", err)
tl_messages_set_bot_callback_answer_gen.go#L263: return fmt.Errorf("can't decode messages.setBotCallbackAnswer#d58f130a to nil")
tl_messages_set_bot_callback_answer_gen.go#L266: return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: %w", err)
tl_messages_set_bot_callback_answer_gen.go#L274: return fmt.Errorf("can't decode messages.setBotCallbackAnswer#d58f130a to nil")
tl_messages_set_bot_callback_answer_gen.go#L278: return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field flags: %w", err)
tl_messages_set_bot_callback_answer_gen.go#L285: return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field query_id: %w", err)
tl_messages_set_bot_callback_answer_gen.go#L292: return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field message: %w", err)
tl_messages_set_bot_callback_answer_gen.go#L299: return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field url: %w", err)
tl_messages_set_bot_callback_answer_gen.go#L306: return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field cache_time: %w", err)
tl_messages_set_bot_precheckout_results_gen.go#L155: return fmt.Errorf("can't encode messages.setBotPrecheckoutResults#9c2dd95 as nil")
tl_messages_set_bot_precheckout_results_gen.go#L164: return fmt.Errorf("can't encode messages.setBotPrecheckoutResults#9c2dd95 as nil")
tl_messages_set_bot_precheckout_results_gen.go#L173: return fmt.Errorf("unable to encode messages.setBotPrecheckoutResults#9c2dd95: field flags: %w", err)
tl_messages_set_bot_precheckout_results_gen.go#L221: return fmt.Errorf("can't decode messages.setBotPrecheckoutResults#9c2dd95 to nil")
tl_messages_set_bot_precheckout_results_gen.go#L224: return fmt.Errorf("unable to decode messages.setBotPrecheckoutResults#9c2dd95: %w", err)
tl_messages_set_bot_precheckout_results_gen.go#L232: return fmt.Errorf("can't decode messages.setBotPrecheckoutResults#9c2dd95 to nil")
tl_messages_set_bot_precheckout_results_gen.go#L236: return fmt.Errorf("unable to decode messages.setBotPrecheckoutResults#9c2dd95: field flags: %w", err)
tl_messages_set_bot_precheckout_results_gen.go#L243: return fmt.Errorf("unable to decode messages.setBotPrecheckoutResults#9c2dd95: field query_id: %w", err)
tl_messages_set_bot_precheckout_results_gen.go#L250: return fmt.Errorf("unable to decode messages.setBotPrecheckoutResults#9c2dd95: field error: %w", err)
tl_messages_set_bot_shipping_results_gen.go#L154: return fmt.Errorf("can't encode messages.setBotShippingResults#e5f672fa as nil")
tl_messages_set_bot_shipping_results_gen.go#L163: return fmt.Errorf("can't encode messages.setBotShippingResults#e5f672fa as nil")
tl_messages_set_bot_shipping_results_gen.go#L172: return fmt.Errorf("unable to encode messages.setBotShippingResults#e5f672fa: field flags: %w", err)
tl_messages_set_bot_shipping_results_gen.go#L182: return fmt.Errorf("unable to encode messages.setBotShippingResults#e5f672fa: field shipping_options element with index %d: %w", idx, err)
tl_messages_set_bot_shipping_results_gen.go#L227: return fmt.Errorf("can't decode messages.setBotShippingResults#e5f672fa to nil")
tl_messages_set_bot_shipping_results_gen.go#L230: return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: %w", err)
tl_messages_set_bot_shipping_results_gen.go#L238: return fmt.Errorf("can't decode messages.setBotShippingResults#e5f672fa to nil")
tl_messages_set_bot_shipping_results_gen.go#L242: return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field flags: %w", err)
tl_messages_set_bot_shipping_results_gen.go#L248: return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field query_id: %w", err)
tl_messages_set_bot_shipping_results_gen.go#L255: return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field error: %w", err)
tl_messages_set_bot_shipping_results_gen.go#L262: return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field shipping_options: %w", err)
tl_messages_set_bot_shipping_results_gen.go#L267: return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field shipping_options: %w", err)
tl_messages_set_encrypted_typing_gen.go#L121: return fmt.Errorf("can't encode messages.setEncryptedTyping#791451ed as nil")
tl_messages_set_encrypted_typing_gen.go#L130: return fmt.Errorf("can't encode messages.setEncryptedTyping#791451ed as nil")
tl_messages_set_encrypted_typing_gen.go#L133: return fmt.Errorf("unable to encode messages.setEncryptedTyping#791451ed: field peer: %w", err)
tl_messages_set_encrypted_typing_gen.go#L152: return fmt.Errorf("can't decode messages.setEncryptedTyping#791451ed to nil")
tl_messages_set_encrypted_typing_gen.go#L155: return fmt.Errorf("unable to decode messages.setEncryptedTyping#791451ed: %w", err)
tl_messages_set_encrypted_typing_gen.go#L163: return fmt.Errorf("can't decode messages.setEncryptedTyping#791451ed to nil")
tl_messages_set_encrypted_typing_gen.go#L167: return fmt.Errorf("unable to decode messages.setEncryptedTyping#791451ed: field peer: %w", err)
tl_messages_set_encrypted_typing_gen.go#L173: return fmt.Errorf("unable to decode messages.setEncryptedTyping#791451ed: field typing: %w", err)
tl_messages_set_game_score_gen.go#L173: return fmt.Errorf("can't encode messages.setGameScore#8ef8ecc0 as nil")
tl_messages_set_game_score_gen.go#L182: return fmt.Errorf("can't encode messages.setGameScore#8ef8ecc0 as nil")
tl_messages_set_game_score_gen.go#L191: return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field flags: %w", err)
tl_messages_set_game_score_gen.go#L194: return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field peer is nil")
tl_messages_set_game_score_gen.go#L197: return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field peer: %w", err)
tl_messages_set_game_score_gen.go#L201: return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field user_id is nil")
tl_messages_set_game_score_gen.go#L204: return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field user_id: %w", err)
tl_messages_set_game_score_gen.go#L265: return fmt.Errorf("can't decode messages.setGameScore#8ef8ecc0 to nil")
tl_messages_set_game_score_gen.go#L268: return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: %w", err)
tl_messages_set_game_score_gen.go#L276: return fmt.Errorf("can't decode messages.setGameScore#8ef8ecc0 to nil")
tl_messages_set_game_score_gen.go#L280: return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field flags: %w", err)
tl_messages_set_game_score_gen.go#L288: return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field peer: %w", err)
tl_messages_set_game_score_gen.go#L295: return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field id: %w", err)
tl_messages_set_game_score_gen.go#L302: return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field user_id: %w", err)
tl_messages_set_game_score_gen.go#L309: return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field score: %w", err)
tl_messages_set_history_ttl_gen.go#L115: return fmt.Errorf("can't encode messages.setHistoryTTL#b80e5fe4 as nil")
tl_messages_set_history_ttl_gen.go#L124: return fmt.Errorf("can't encode messages.setHistoryTTL#b80e5fe4 as nil")
tl_messages_set_history_ttl_gen.go#L127: return fmt.Errorf("unable to encode messages.setHistoryTTL#b80e5fe4: field peer is nil")
tl_messages_set_history_ttl_gen.go#L130: return fmt.Errorf("unable to encode messages.setHistoryTTL#b80e5fe4: field peer: %w", err)
tl_messages_set_history_ttl_gen.go#L149: return fmt.Errorf("can't decode messages.setHistoryTTL#b80e5fe4 to nil")
tl_messages_set_history_ttl_gen.go#L152: return fmt.Errorf("unable to decode messages.setHistoryTTL#b80e5fe4: %w", err)
tl_messages_set_history_ttl_gen.go#L160: return fmt.Errorf("can't decode messages.setHistoryTTL#b80e5fe4 to nil")
tl_messages_set_history_ttl_gen.go#L165: return fmt.Errorf("unable to decode messages.setHistoryTTL#b80e5fe4: field peer: %w", err)
tl_messages_set_history_ttl_gen.go#L172: return fmt.Errorf("unable to decode messages.setHistoryTTL#b80e5fe4: field period: %w", err)
tl_messages_set_inline_bot_results_gen.go#L198: return fmt.Errorf("can't encode messages.setInlineBotResults#eb5ea206 as nil")
tl_messages_set_inline_bot_results_gen.go#L207: return fmt.Errorf("can't encode messages.setInlineBotResults#eb5ea206 as nil")
tl_messages_set_inline_bot_results_gen.go#L222: return fmt.Errorf("unable to encode messages.setInlineBotResults#eb5ea206: field flags: %w", err)
tl_messages_set_inline_bot_results_gen.go#L228: return fmt.Errorf("unable to encode messages.setInlineBotResults#eb5ea206: field results element with index %d is nil", idx)
tl_messages_set_inline_bot_results_gen.go#L231: return fmt.Errorf("unable to encode messages.setInlineBotResults#eb5ea206: field results element with index %d: %w", idx, err)
tl_messages_set_inline_bot_results_gen.go#L240: return fmt.Errorf("unable to encode messages.setInlineBotResults#eb5ea206: field switch_pm: %w", err)
tl_messages_set_inline_bot_results_gen.go#L331: return fmt.Errorf("can't decode messages.setInlineBotResults#eb5ea206 to nil")
tl_messages_set_inline_bot_results_gen.go#L334: return fmt.Errorf("unable to decode messages.setInlineBotResults#eb5ea206: %w", err)
tl_messages_set_inline_bot_results_gen.go#L342: return fmt.Errorf("can't decode messages.setInlineBotResults#eb5ea206 to nil")
tl_messages_set_inline_bot_results_gen.go#L346: return fmt.Errorf("unable to decode messages.setInlineBotResults#eb5ea206: field flags: %w", err)
tl_messages_set_inline_bot_results_gen.go#L354: return fmt.Errorf("unable to decode messages.setInlineBotResults#eb5ea206: field query_id: %w", err)
tl_messages_set_inline_bot_results_gen.go#L361: return fmt.Errorf("unable to decode messages.setInlineBotResults#eb5ea206: field results: %w", err)
tl_messages_set_inline_bot_results_gen.go#L366: return fmt.Errorf("unable to decode messages.setInlineBotResults#eb5ea206: field results: %w", err)
tl_messages_set_inline_bot_results_gen.go#L374: return fmt.Errorf("unable to decode messages.setInlineBotResults#eb5ea206: field cache_time: %w", err)
tl_messages_set_inline_bot_results_gen.go#L381: return fmt.Errorf("unable to decode messages.setInlineBotResults#eb5ea206: field next_offset: %w", err)
tl_messages_set_inline_bot_results_gen.go#L387: return fmt.Errorf("unable to decode messages.setInlineBotResults#eb5ea206: field switch_pm: %w", err)
tl_messages_set_inline_game_score_gen.go#L162: return fmt.Errorf("can't encode messages.setInlineGameScore#15ad9f64 as nil")
tl_messages_set_inline_game_score_gen.go#L171: return fmt.Errorf("can't encode messages.setInlineGameScore#15ad9f64 as nil")
tl_messages_set_inline_game_score_gen.go#L180: return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field flags: %w", err)
tl_messages_set_inline_game_score_gen.go#L183: return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field id: %w", err)
tl_messages_set_inline_game_score_gen.go#L186: return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field user_id is nil")
tl_messages_set_inline_game_score_gen.go#L189: return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field user_id: %w", err)
tl_messages_set_inline_game_score_gen.go#L245: return fmt.Errorf("can't decode messages.setInlineGameScore#15ad9f64 to nil")
tl_messages_set_inline_game_score_gen.go#L248: return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: %w", err)
tl_messages_set_inline_game_score_gen.go#L256: return fmt.Errorf("can't decode messages.setInlineGameScore#15ad9f64 to nil")
tl_messages_set_inline_game_score_gen.go#L260: return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: field flags: %w", err)
tl_messages_set_inline_game_score_gen.go#L267: return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: field id: %w", err)
tl_messages_set_inline_game_score_gen.go#L273: return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: field user_id: %w", err)
tl_messages_set_inline_game_score_gen.go#L280: return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: field score: %w", err)
tl_messages_set_typing_gen.go#L151: return fmt.Errorf("can't encode messages.setTyping#58943ee2 as nil")
tl_messages_set_typing_gen.go#L160: return fmt.Errorf("can't encode messages.setTyping#58943ee2 as nil")
tl_messages_set_typing_gen.go#L166: return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field flags: %w", err)
tl_messages_set_typing_gen.go#L169: return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field peer is nil")
tl_messages_set_typing_gen.go#L172: return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field peer: %w", err)
tl_messages_set_typing_gen.go#L178: return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field action is nil")
tl_messages_set_typing_gen.go#L181: return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field action: %w", err)
tl_messages_set_typing_gen.go#L214: return fmt.Errorf("can't decode messages.setTyping#58943ee2 to nil")
tl_messages_set_typing_gen.go#L217: return fmt.Errorf("unable to decode messages.setTyping#58943ee2: %w", err)
tl_messages_set_typing_gen.go#L225: return fmt.Errorf("can't decode messages.setTyping#58943ee2 to nil")
tl_messages_set_typing_gen.go#L229: return fmt.Errorf("unable to decode messages.setTyping#58943ee2: field flags: %w", err)
tl_messages_set_typing_gen.go#L235: return fmt.Errorf("unable to decode messages.setTyping#58943ee2: field peer: %w", err)
tl_messages_set_typing_gen.go#L242: return fmt.Errorf("unable to decode messages.setTyping#58943ee2: field top_msg_id: %w", err)
tl_messages_set_typing_gen.go#L249: return fmt.Errorf("unable to decode messages.setTyping#58943ee2: field action: %w", err)
tl_messages_start_bot_gen.go#L144: return fmt.Errorf("can't encode messages.startBot#e6df7378 as nil")
tl_messages_start_bot_gen.go#L153: return fmt.Errorf("can't encode messages.startBot#e6df7378 as nil")
tl_messages_start_bot_gen.go#L156: return fmt.Errorf("unable to encode messages.startBot#e6df7378: field bot is nil")
tl_messages_start_bot_gen.go#L159: return fmt.Errorf("unable to encode messages.startBot#e6df7378: field bot: %w", err)
tl_messages_start_bot_gen.go#L162: return fmt.Errorf("unable to encode messages.startBot#e6df7378: field peer is nil")
tl_messages_start_bot_gen.go#L165: return fmt.Errorf("unable to encode messages.startBot#e6df7378: field peer: %w", err)
tl_messages_start_bot_gen.go#L195: return fmt.Errorf("can't decode messages.startBot#e6df7378 to nil")
tl_messages_start_bot_gen.go#L198: return fmt.Errorf("unable to decode messages.startBot#e6df7378: %w", err)
tl_messages_start_bot_gen.go#L206: return fmt.Errorf("can't decode messages.startBot#e6df7378 to nil")
tl_messages_start_bot_gen.go#L211: return fmt.Errorf("unable to decode messages.startBot#e6df7378: field bot: %w", err)
tl_messages_start_bot_gen.go#L218: return fmt.Errorf("unable to decode messages.startBot#e6df7378: field peer: %w", err)
tl_messages_start_bot_gen.go#L225: return fmt.Errorf("unable to decode messages.startBot#e6df7378: field random_id: %w", err)
tl_messages_start_bot_gen.go#L232: return fmt.Errorf("unable to decode messages.startBot#e6df7378: field start_param: %w", err)
tl_messages_start_history_import_gen.go#L115: return fmt.Errorf("can't encode messages.startHistoryImport#b43df344 as nil")
tl_messages_start_history_import_gen.go#L124: return fmt.Errorf("can't encode messages.startHistoryImport#b43df344 as nil")
tl_messages_start_history_import_gen.go#L127: return fmt.Errorf("unable to encode messages.startHistoryImport#b43df344: field peer is nil")
tl_messages_start_history_import_gen.go#L130: return fmt.Errorf("unable to encode messages.startHistoryImport#b43df344: field peer: %w", err)
tl_messages_start_history_import_gen.go#L149: return fmt.Errorf("can't decode messages.startHistoryImport#b43df344 to nil")
tl_messages_start_history_import_gen.go#L152: return fmt.Errorf("unable to decode messages.startHistoryImport#b43df344: %w", err)
tl_messages_start_history_import_gen.go#L160: return fmt.Errorf("can't decode messages.startHistoryImport#b43df344 to nil")
tl_messages_start_history_import_gen.go#L165: return fmt.Errorf("unable to decode messages.startHistoryImport#b43df344: field peer: %w", err)
tl_messages_start_history_import_gen.go#L172: return fmt.Errorf("unable to decode messages.startHistoryImport#b43df344: field import_id: %w", err)
tl_messages_sticker_set_gen.go#L127: return fmt.Errorf("can't encode messages.stickerSet#b60a24a6 as nil")
tl_messages_sticker_set_gen.go#L136: return fmt.Errorf("can't encode messages.stickerSet#b60a24a6 as nil")
tl_messages_sticker_set_gen.go#L139: return fmt.Errorf("unable to encode messages.stickerSet#b60a24a6: field set: %w", err)
tl_messages_sticker_set_gen.go#L144: return fmt.Errorf("unable to encode messages.stickerSet#b60a24a6: field packs element with index %d: %w", idx, err)
tl_messages_sticker_set_gen.go#L150: return fmt.Errorf("unable to encode messages.stickerSet#b60a24a6: field documents element with index %d is nil", idx)
tl_messages_sticker_set_gen.go#L153: return fmt.Errorf("unable to encode messages.stickerSet#b60a24a6: field documents element with index %d: %w", idx, err)
tl_messages_sticker_set_gen.go#L182: return fmt.Errorf("can't decode messages.stickerSet#b60a24a6 to nil")
tl_messages_sticker_set_gen.go#L185: return fmt.Errorf("unable to decode messages.stickerSet#b60a24a6: %w", err)
tl_messages_sticker_set_gen.go#L193: return fmt.Errorf("can't decode messages.stickerSet#b60a24a6 to nil")
tl_messages_sticker_set_gen.go#L197: return fmt.Errorf("unable to decode messages.stickerSet#b60a24a6: field set: %w", err)
tl_messages_sticker_set_gen.go#L203: return fmt.Errorf("unable to decode messages.stickerSet#b60a24a6: field packs: %w", err)
tl_messages_sticker_set_gen.go#L208: return fmt.Errorf("unable to decode messages.stickerSet#b60a24a6: field packs: %w", err)
tl_messages_sticker_set_gen.go#L216: return fmt.Errorf("unable to decode messages.stickerSet#b60a24a6: field documents: %w", err)
tl_messages_sticker_set_gen.go#L221: return fmt.Errorf("unable to decode messages.stickerSet#b60a24a6: field documents: %w", err)
tl_messages_sticker_set_install_result_gen.go#L88: return fmt.Errorf("can't encode messages.stickerSetInstallResultSuccess#38641628 as nil")
tl_messages_sticker_set_install_result_gen.go#L97: return fmt.Errorf("can't encode messages.stickerSetInstallResultSuccess#38641628 as nil")
tl_messages_sticker_set_install_result_gen.go#L105: return fmt.Errorf("can't decode messages.stickerSetInstallResultSuccess#38641628 to nil")
tl_messages_sticker_set_install_result_gen.go#L108: return fmt.Errorf("unable to decode messages.stickerSetInstallResultSuccess#38641628: %w", err)
tl_messages_sticker_set_install_result_gen.go#L116: return fmt.Errorf("can't decode messages.stickerSetInstallResultSuccess#38641628 to nil")
tl_messages_sticker_set_install_result_gen.go#L210: return fmt.Errorf("can't encode messages.stickerSetInstallResultArchive#35e410a8 as nil")
tl_messages_sticker_set_install_result_gen.go#L219: return fmt.Errorf("can't encode messages.stickerSetInstallResultArchive#35e410a8 as nil")
tl_messages_sticker_set_install_result_gen.go#L224: return fmt.Errorf("unable to encode messages.stickerSetInstallResultArchive#35e410a8: field sets element with index %d is nil", idx)
tl_messages_sticker_set_install_result_gen.go#L227: return fmt.Errorf("unable to encode messages.stickerSetInstallResultArchive#35e410a8: field sets element with index %d: %w", idx, err)
tl_messages_sticker_set_install_result_gen.go#L246: return fmt.Errorf("can't decode messages.stickerSetInstallResultArchive#35e410a8 to nil")
tl_messages_sticker_set_install_result_gen.go#L249: return fmt.Errorf("unable to decode messages.stickerSetInstallResultArchive#35e410a8: %w", err)
tl_messages_sticker_set_install_result_gen.go#L257: return fmt.Errorf("can't decode messages.stickerSetInstallResultArchive#35e410a8 to nil")
tl_messages_sticker_set_install_result_gen.go#L262: return fmt.Errorf("unable to decode messages.stickerSetInstallResultArchive#35e410a8: field sets: %w", err)
tl_messages_sticker_set_install_result_gen.go#L267: return fmt.Errorf("unable to decode messages.stickerSetInstallResultArchive#35e410a8: field sets: %w", err)
tl_messages_sticker_set_install_result_gen.go#L334: return nil, fmt.Errorf("unable to decode MessagesStickerSetInstallResultClass: %w", err)
tl_messages_sticker_set_install_result_gen.go#L341: return nil, fmt.Errorf("unable to decode MessagesStickerSetInstallResultClass: %w", err)
tl_messages_sticker_set_install_result_gen.go#L345: return nil, fmt.Errorf("unable to decode MessagesStickerSetInstallResultClass: %w", bin.NewUnexpectedID(id))
tl_messages_sticker_set_install_result_gen.go#L357: return fmt.Errorf("unable to decode MessagesStickerSetInstallResultBox to nil")
tl_messages_sticker_set_install_result_gen.go#L361: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_sticker_set_install_result_gen.go#L370: return fmt.Errorf("unable to encode MessagesStickerSetInstallResultClass as nil")
tl_messages_stickers_gen.go#L88: return fmt.Errorf("can't encode messages.stickersNotModified#f1749a22 as nil")
tl_messages_stickers_gen.go#L97: return fmt.Errorf("can't encode messages.stickersNotModified#f1749a22 as nil")
tl_messages_stickers_gen.go#L105: return fmt.Errorf("can't decode messages.stickersNotModified#f1749a22 to nil")
tl_messages_stickers_gen.go#L108: return fmt.Errorf("unable to decode messages.stickersNotModified#f1749a22: %w", err)
tl_messages_stickers_gen.go#L116: return fmt.Errorf("can't decode messages.stickersNotModified#f1749a22 to nil")
tl_messages_stickers_gen.go#L221: return fmt.Errorf("can't encode messages.stickers#e4599bbd as nil")
tl_messages_stickers_gen.go#L230: return fmt.Errorf("can't encode messages.stickers#e4599bbd as nil")
tl_messages_stickers_gen.go#L236: return fmt.Errorf("unable to encode messages.stickers#e4599bbd: field stickers element with index %d is nil", idx)
tl_messages_stickers_gen.go#L239: return fmt.Errorf("unable to encode messages.stickers#e4599bbd: field stickers element with index %d: %w", idx, err)
tl_messages_stickers_gen.go#L263: return fmt.Errorf("can't decode messages.stickers#e4599bbd to nil")
tl_messages_stickers_gen.go#L266: return fmt.Errorf("unable to decode messages.stickers#e4599bbd: %w", err)
tl_messages_stickers_gen.go#L274: return fmt.Errorf("can't decode messages.stickers#e4599bbd to nil")
tl_messages_stickers_gen.go#L279: return fmt.Errorf("unable to decode messages.stickers#e4599bbd: field hash: %w", err)
tl_messages_stickers_gen.go#L286: return fmt.Errorf("unable to decode messages.stickers#e4599bbd: field stickers: %w", err)
tl_messages_stickers_gen.go#L291: return fmt.Errorf("unable to decode messages.stickers#e4599bbd: field stickers: %w", err)
tl_messages_stickers_gen.go#L369: return nil, fmt.Errorf("unable to decode MessagesStickersClass: %w", err)
tl_messages_stickers_gen.go#L376: return nil, fmt.Errorf("unable to decode MessagesStickersClass: %w", err)
tl_messages_stickers_gen.go#L380: return nil, fmt.Errorf("unable to decode MessagesStickersClass: %w", bin.NewUnexpectedID(id))
tl_messages_stickers_gen.go#L392: return fmt.Errorf("unable to decode MessagesStickersBox to nil")
tl_messages_stickers_gen.go#L396: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_messages_stickers_gen.go#L405: return fmt.Errorf("unable to encode MessagesStickersClass as nil")
tl_messages_toggle_dialog_pin_gen.go#L125: return fmt.Errorf("can't encode messages.toggleDialogPin#a731e257 as nil")
tl_messages_toggle_dialog_pin_gen.go#L134: return fmt.Errorf("can't encode messages.toggleDialogPin#a731e257 as nil")
tl_messages_toggle_dialog_pin_gen.go#L140: return fmt.Errorf("unable to encode messages.toggleDialogPin#a731e257: field flags: %w", err)
tl_messages_toggle_dialog_pin_gen.go#L143: return fmt.Errorf("unable to encode messages.toggleDialogPin#a731e257: field peer is nil")
tl_messages_toggle_dialog_pin_gen.go#L146: return fmt.Errorf("unable to encode messages.toggleDialogPin#a731e257: field peer: %w", err)
tl_messages_toggle_dialog_pin_gen.go#L175: return fmt.Errorf("can't decode messages.toggleDialogPin#a731e257 to nil")
tl_messages_toggle_dialog_pin_gen.go#L178: return fmt.Errorf("unable to decode messages.toggleDialogPin#a731e257: %w", err)
tl_messages_toggle_dialog_pin_gen.go#L186: return fmt.Errorf("can't decode messages.toggleDialogPin#a731e257 to nil")
tl_messages_toggle_dialog_pin_gen.go#L190: return fmt.Errorf("unable to decode messages.toggleDialogPin#a731e257: field flags: %w", err)
tl_messages_toggle_dialog_pin_gen.go#L197: return fmt.Errorf("unable to decode messages.toggleDialogPin#a731e257: field peer: %w", err)
tl_messages_toggle_sticker_sets_gen.go#L149: return fmt.Errorf("can't encode messages.toggleStickerSets#b5052fea as nil")
tl_messages_toggle_sticker_sets_gen.go#L158: return fmt.Errorf("can't encode messages.toggleStickerSets#b5052fea as nil")
tl_messages_toggle_sticker_sets_gen.go#L170: return fmt.Errorf("unable to encode messages.toggleStickerSets#b5052fea: field flags: %w", err)
tl_messages_toggle_sticker_sets_gen.go#L175: return fmt.Errorf("unable to encode messages.toggleStickerSets#b5052fea: field stickersets element with index %d is nil", idx)
tl_messages_toggle_sticker_sets_gen.go#L178: return fmt.Errorf("unable to encode messages.toggleStickerSets#b5052fea: field stickersets element with index %d: %w", idx, err)
tl_messages_toggle_sticker_sets_gen.go#L245: return fmt.Errorf("can't decode messages.toggleStickerSets#b5052fea to nil")
tl_messages_toggle_sticker_sets_gen.go#L248: return fmt.Errorf("unable to decode messages.toggleStickerSets#b5052fea: %w", err)
tl_messages_toggle_sticker_sets_gen.go#L256: return fmt.Errorf("can't decode messages.toggleStickerSets#b5052fea to nil")
tl_messages_toggle_sticker_sets_gen.go#L260: return fmt.Errorf("unable to decode messages.toggleStickerSets#b5052fea: field flags: %w", err)
tl_messages_toggle_sticker_sets_gen.go#L269: return fmt.Errorf("unable to decode messages.toggleStickerSets#b5052fea: field stickersets: %w", err)
tl_messages_toggle_sticker_sets_gen.go#L274: return fmt.Errorf("unable to decode messages.toggleStickerSets#b5052fea: field stickersets: %w", err)
tl_messages_uninstall_sticker_set_gen.go#L105: return fmt.Errorf("can't encode messages.uninstallStickerSet#f96e55de as nil")
tl_messages_uninstall_sticker_set_gen.go#L114: return fmt.Errorf("can't encode messages.uninstallStickerSet#f96e55de as nil")
tl_messages_uninstall_sticker_set_gen.go#L117: return fmt.Errorf("unable to encode messages.uninstallStickerSet#f96e55de: field stickerset is nil")
tl_messages_uninstall_sticker_set_gen.go#L120: return fmt.Errorf("unable to encode messages.uninstallStickerSet#f96e55de: field stickerset: %w", err)
tl_messages_uninstall_sticker_set_gen.go#L133: return fmt.Errorf("can't decode messages.uninstallStickerSet#f96e55de to nil")
tl_messages_uninstall_sticker_set_gen.go#L136: return fmt.Errorf("unable to decode messages.uninstallStickerSet#f96e55de: %w", err)
tl_messages_uninstall_sticker_set_gen.go#L144: return fmt.Errorf("can't decode messages.uninstallStickerSet#f96e55de to nil")
tl_messages_uninstall_sticker_set_gen.go#L149: return fmt.Errorf("unable to decode messages.uninstallStickerSet#f96e55de: field stickerset: %w", err)
tl_messages_unpin_all_messages_gen.go#L108: return fmt.Errorf("can't encode messages.unpinAllMessages#f025bc8b as nil")
tl_messages_unpin_all_messages_gen.go#L117: return fmt.Errorf("can't encode messages.unpinAllMessages#f025bc8b as nil")
tl_messages_unpin_all_messages_gen.go#L120: return fmt.Errorf("unable to encode messages.unpinAllMessages#f025bc8b: field peer is nil")
tl_messages_unpin_all_messages_gen.go#L123: return fmt.Errorf("unable to encode messages.unpinAllMessages#f025bc8b: field peer: %w", err)
tl_messages_unpin_all_messages_gen.go#L136: return fmt.Errorf("can't decode messages.unpinAllMessages#f025bc8b to nil")
tl_messages_unpin_all_messages_gen.go#L139: return fmt.Errorf("unable to decode messages.unpinAllMessages#f025bc8b: %w", err)
tl_messages_unpin_all_messages_gen.go#L147: return fmt.Errorf("can't decode messages.unpinAllMessages#f025bc8b to nil")
tl_messages_unpin_all_messages_gen.go#L152: return fmt.Errorf("unable to decode messages.unpinAllMessages#f025bc8b: field peer: %w", err)
tl_messages_update_dialog_filter_gen.go#L139: return fmt.Errorf("can't encode messages.updateDialogFilter#1ad4a04a as nil")
tl_messages_update_dialog_filter_gen.go#L148: return fmt.Errorf("can't encode messages.updateDialogFilter#1ad4a04a as nil")
tl_messages_update_dialog_filter_gen.go#L154: return fmt.Errorf("unable to encode messages.updateDialogFilter#1ad4a04a: field flags: %w", err)
tl_messages_update_dialog_filter_gen.go#L159: return fmt.Errorf("unable to encode messages.updateDialogFilter#1ad4a04a: field filter: %w", err)
tl_messages_update_dialog_filter_gen.go#L188: return fmt.Errorf("can't decode messages.updateDialogFilter#1ad4a04a to nil")
tl_messages_update_dialog_filter_gen.go#L191: return fmt.Errorf("unable to decode messages.updateDialogFilter#1ad4a04a: %w", err)
tl_messages_update_dialog_filter_gen.go#L199: return fmt.Errorf("can't decode messages.updateDialogFilter#1ad4a04a to nil")
tl_messages_update_dialog_filter_gen.go#L203: return fmt.Errorf("unable to decode messages.updateDialogFilter#1ad4a04a: field flags: %w", err)
tl_messages_update_dialog_filter_gen.go#L209: return fmt.Errorf("unable to decode messages.updateDialogFilter#1ad4a04a: field id: %w", err)
tl_messages_update_dialog_filter_gen.go#L215: return fmt.Errorf("unable to decode messages.updateDialogFilter#1ad4a04a: field filter: %w", err)
tl_messages_update_dialog_filters_order_gen.go#L111: return fmt.Errorf("can't encode messages.updateDialogFiltersOrder#c563c1e4 as nil")
tl_messages_update_dialog_filters_order_gen.go#L120: return fmt.Errorf("can't encode messages.updateDialogFiltersOrder#c563c1e4 as nil")
tl_messages_update_dialog_filters_order_gen.go#L137: return fmt.Errorf("can't decode messages.updateDialogFiltersOrder#c563c1e4 to nil")
tl_messages_update_dialog_filters_order_gen.go#L140: return fmt.Errorf("unable to decode messages.updateDialogFiltersOrder#c563c1e4: %w", err)
tl_messages_update_dialog_filters_order_gen.go#L148: return fmt.Errorf("can't decode messages.updateDialogFiltersOrder#c563c1e4 to nil")
tl_messages_update_dialog_filters_order_gen.go#L153: return fmt.Errorf("unable to decode messages.updateDialogFiltersOrder#c563c1e4: field order: %w", err)
tl_messages_update_dialog_filters_order_gen.go#L158: return fmt.Errorf("unable to decode messages.updateDialogFiltersOrder#c563c1e4: field order: %w", err)
tl_messages_update_pinned_message_gen.go#L160: return fmt.Errorf("can't encode messages.updatePinnedMessage#d2aaf7ec as nil")
tl_messages_update_pinned_message_gen.go#L169: return fmt.Errorf("can't encode messages.updatePinnedMessage#d2aaf7ec as nil")
tl_messages_update_pinned_message_gen.go#L181: return fmt.Errorf("unable to encode messages.updatePinnedMessage#d2aaf7ec: field flags: %w", err)
tl_messages_update_pinned_message_gen.go#L184: return fmt.Errorf("unable to encode messages.updatePinnedMessage#d2aaf7ec: field peer is nil")
tl_messages_update_pinned_message_gen.go#L187: return fmt.Errorf("unable to encode messages.updatePinnedMessage#d2aaf7ec: field peer: %w", err)
tl_messages_update_pinned_message_gen.go#L254: return fmt.Errorf("can't decode messages.updatePinnedMessage#d2aaf7ec to nil")
tl_messages_update_pinned_message_gen.go#L257: return fmt.Errorf("unable to decode messages.updatePinnedMessage#d2aaf7ec: %w", err)
tl_messages_update_pinned_message_gen.go#L265: return fmt.Errorf("can't decode messages.updatePinnedMessage#d2aaf7ec to nil")
tl_messages_update_pinned_message_gen.go#L269: return fmt.Errorf("unable to decode messages.updatePinnedMessage#d2aaf7ec: field flags: %w", err)
tl_messages_update_pinned_message_gen.go#L278: return fmt.Errorf("unable to decode messages.updatePinnedMessage#d2aaf7ec: field peer: %w", err)
tl_messages_update_pinned_message_gen.go#L285: return fmt.Errorf("unable to decode messages.updatePinnedMessage#d2aaf7ec: field id: %w", err)
tl_messages_upload_encrypted_file_gen.go#L116: return fmt.Errorf("can't encode messages.uploadEncryptedFile#5057c497 as nil")
tl_messages_upload_encrypted_file_gen.go#L125: return fmt.Errorf("can't encode messages.uploadEncryptedFile#5057c497 as nil")
tl_messages_upload_encrypted_file_gen.go#L128: return fmt.Errorf("unable to encode messages.uploadEncryptedFile#5057c497: field peer: %w", err)
tl_messages_upload_encrypted_file_gen.go#L131: return fmt.Errorf("unable to encode messages.uploadEncryptedFile#5057c497: field file is nil")
tl_messages_upload_encrypted_file_gen.go#L134: return fmt.Errorf("unable to encode messages.uploadEncryptedFile#5057c497: field file: %w", err)
tl_messages_upload_encrypted_file_gen.go#L157: return fmt.Errorf("can't decode messages.uploadEncryptedFile#5057c497 to nil")
tl_messages_upload_encrypted_file_gen.go#L160: return fmt.Errorf("unable to decode messages.uploadEncryptedFile#5057c497: %w", err)
tl_messages_upload_encrypted_file_gen.go#L168: return fmt.Errorf("can't decode messages.uploadEncryptedFile#5057c497 to nil")
tl_messages_upload_encrypted_file_gen.go#L172: return fmt.Errorf("unable to decode messages.uploadEncryptedFile#5057c497: field peer: %w", err)
tl_messages_upload_encrypted_file_gen.go#L178: return fmt.Errorf("unable to decode messages.uploadEncryptedFile#5057c497: field file: %w", err)
tl_messages_upload_imported_media_gen.go#L137: return fmt.Errorf("can't encode messages.uploadImportedMedia#2a862092 as nil")
tl_messages_upload_imported_media_gen.go#L146: return fmt.Errorf("can't encode messages.uploadImportedMedia#2a862092 as nil")
tl_messages_upload_imported_media_gen.go#L149: return fmt.Errorf("unable to encode messages.uploadImportedMedia#2a862092: field peer is nil")
tl_messages_upload_imported_media_gen.go#L152: return fmt.Errorf("unable to encode messages.uploadImportedMedia#2a862092: field peer: %w", err)
tl_messages_upload_imported_media_gen.go#L157: return fmt.Errorf("unable to encode messages.uploadImportedMedia#2a862092: field media is nil")
tl_messages_upload_imported_media_gen.go#L160: return fmt.Errorf("unable to encode messages.uploadImportedMedia#2a862092: field media: %w", err)
tl_messages_upload_imported_media_gen.go#L188: return fmt.Errorf("can't decode messages.uploadImportedMedia#2a862092 to nil")
tl_messages_upload_imported_media_gen.go#L191: return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: %w", err)
tl_messages_upload_imported_media_gen.go#L199: return fmt.Errorf("can't decode messages.uploadImportedMedia#2a862092 to nil")
tl_messages_upload_imported_media_gen.go#L204: return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: field peer: %w", err)
tl_messages_upload_imported_media_gen.go#L211: return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: field import_id: %w", err)
tl_messages_upload_imported_media_gen.go#L218: return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: field file_name: %w", err)
tl_messages_upload_imported_media_gen.go#L225: return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: field media: %w", err)
tl_messages_upload_media_gen.go#L122: return fmt.Errorf("can't encode messages.uploadMedia#519bc2b1 as nil")
tl_messages_upload_media_gen.go#L131: return fmt.Errorf("can't encode messages.uploadMedia#519bc2b1 as nil")
tl_messages_upload_media_gen.go#L134: return fmt.Errorf("unable to encode messages.uploadMedia#519bc2b1: field peer is nil")
tl_messages_upload_media_gen.go#L137: return fmt.Errorf("unable to encode messages.uploadMedia#519bc2b1: field peer: %w", err)
tl_messages_upload_media_gen.go#L140: return fmt.Errorf("unable to encode messages.uploadMedia#519bc2b1: field media is nil")
tl_messages_upload_media_gen.go#L143: return fmt.Errorf("unable to encode messages.uploadMedia#519bc2b1: field media: %w", err)
tl_messages_upload_media_gen.go#L161: return fmt.Errorf("can't decode messages.uploadMedia#519bc2b1 to nil")
tl_messages_upload_media_gen.go#L164: return fmt.Errorf("unable to decode messages.uploadMedia#519bc2b1: %w", err)
tl_messages_upload_media_gen.go#L172: return fmt.Errorf("can't decode messages.uploadMedia#519bc2b1 to nil")
tl_messages_upload_media_gen.go#L177: return fmt.Errorf("unable to decode messages.uploadMedia#519bc2b1: field peer: %w", err)
tl_messages_upload_media_gen.go#L184: return fmt.Errorf("unable to decode messages.uploadMedia#519bc2b1: field media: %w", err)
tl_messages_votes_list_gen.go#L160: return fmt.Errorf("can't encode messages.votesList#823f649 as nil")
tl_messages_votes_list_gen.go#L169: return fmt.Errorf("can't encode messages.votesList#823f649 as nil")
tl_messages_votes_list_gen.go#L175: return fmt.Errorf("unable to encode messages.votesList#823f649: field flags: %w", err)
tl_messages_votes_list_gen.go#L181: return fmt.Errorf("unable to encode messages.votesList#823f649: field votes element with index %d is nil", idx)
tl_messages_votes_list_gen.go#L184: return fmt.Errorf("unable to encode messages.votesList#823f649: field votes element with index %d: %w", idx, err)
tl_messages_votes_list_gen.go#L190: return fmt.Errorf("unable to encode messages.votesList#823f649: field users element with index %d is nil", idx)
tl_messages_votes_list_gen.go#L193: return fmt.Errorf("unable to encode messages.votesList#823f649: field users element with index %d: %w", idx, err)
tl_messages_votes_list_gen.go#L245: return fmt.Errorf("can't decode messages.votesList#823f649 to nil")
tl_messages_votes_list_gen.go#L248: return fmt.Errorf("unable to decode messages.votesList#823f649: %w", err)
tl_messages_votes_list_gen.go#L256: return fmt.Errorf("can't decode messages.votesList#823f649 to nil")
tl_messages_votes_list_gen.go#L260: return fmt.Errorf("unable to decode messages.votesList#823f649: field flags: %w", err)
tl_messages_votes_list_gen.go#L266: return fmt.Errorf("unable to decode messages.votesList#823f649: field count: %w", err)
tl_messages_votes_list_gen.go#L273: return fmt.Errorf("unable to decode messages.votesList#823f649: field votes: %w", err)
tl_messages_votes_list_gen.go#L278: return fmt.Errorf("unable to decode messages.votesList#823f649: field votes: %w", err)
tl_messages_votes_list_gen.go#L286: return fmt.Errorf("unable to decode messages.votesList#823f649: field users: %w", err)
tl_messages_votes_list_gen.go#L291: return fmt.Errorf("unable to decode messages.votesList#823f649: field users: %w", err)
tl_messages_votes_list_gen.go#L299: return fmt.Errorf("unable to decode messages.votesList#823f649: field next_offset: %w", err)
tl_nearest_dc_gen.go#L127: return fmt.Errorf("can't encode nearestDc#8e1a1775 as nil")
tl_nearest_dc_gen.go#L136: return fmt.Errorf("can't encode nearestDc#8e1a1775 as nil")
tl_nearest_dc_gen.go#L162: return fmt.Errorf("can't decode nearestDc#8e1a1775 to nil")
tl_nearest_dc_gen.go#L165: return fmt.Errorf("unable to decode nearestDc#8e1a1775: %w", err)
tl_nearest_dc_gen.go#L173: return fmt.Errorf("can't decode nearestDc#8e1a1775 to nil")
tl_nearest_dc_gen.go#L178: return fmt.Errorf("unable to decode nearestDc#8e1a1775: field country: %w", err)
tl_nearest_dc_gen.go#L185: return fmt.Errorf("unable to decode nearestDc#8e1a1775: field this_dc: %w", err)
tl_nearest_dc_gen.go#L192: return fmt.Errorf("unable to decode nearestDc#8e1a1775: field nearest_dc: %w", err)
tl_notify_peer_gen.go#L105: return fmt.Errorf("can't encode notifyPeer#9fd40bd8 as nil")
tl_notify_peer_gen.go#L114: return fmt.Errorf("can't encode notifyPeer#9fd40bd8 as nil")
tl_notify_peer_gen.go#L117: return fmt.Errorf("unable to encode notifyPeer#9fd40bd8: field peer is nil")
tl_notify_peer_gen.go#L120: return fmt.Errorf("unable to encode notifyPeer#9fd40bd8: field peer: %w", err)
tl_notify_peer_gen.go#L133: return fmt.Errorf("can't decode notifyPeer#9fd40bd8 to nil")
tl_notify_peer_gen.go#L136: return fmt.Errorf("unable to decode notifyPeer#9fd40bd8: %w", err)
tl_notify_peer_gen.go#L144: return fmt.Errorf("can't decode notifyPeer#9fd40bd8 to nil")
tl_notify_peer_gen.go#L149: return fmt.Errorf("unable to decode notifyPeer#9fd40bd8: field peer: %w", err)
tl_notify_peer_gen.go#L225: return fmt.Errorf("can't encode notifyUsers#b4c83b4c as nil")
tl_notify_peer_gen.go#L234: return fmt.Errorf("can't encode notifyUsers#b4c83b4c as nil")
tl_notify_peer_gen.go#L242: return fmt.Errorf("can't decode notifyUsers#b4c83b4c to nil")
tl_notify_peer_gen.go#L245: return fmt.Errorf("unable to decode notifyUsers#b4c83b4c: %w", err)
tl_notify_peer_gen.go#L253: return fmt.Errorf("can't decode notifyUsers#b4c83b4c to nil")
tl_notify_peer_gen.go#L327: return fmt.Errorf("can't encode notifyChats#c007cec3 as nil")
tl_notify_peer_gen.go#L336: return fmt.Errorf("can't encode notifyChats#c007cec3 as nil")
tl_notify_peer_gen.go#L344: return fmt.Errorf("can't decode notifyChats#c007cec3 to nil")
tl_notify_peer_gen.go#L347: return fmt.Errorf("unable to decode notifyChats#c007cec3: %w", err)
tl_notify_peer_gen.go#L355: return fmt.Errorf("can't decode notifyChats#c007cec3 to nil")
tl_notify_peer_gen.go#L429: return fmt.Errorf("can't encode notifyBroadcasts#d612e8ef as nil")
tl_notify_peer_gen.go#L438: return fmt.Errorf("can't encode notifyBroadcasts#d612e8ef as nil")
tl_notify_peer_gen.go#L446: return fmt.Errorf("can't decode notifyBroadcasts#d612e8ef to nil")
tl_notify_peer_gen.go#L449: return fmt.Errorf("unable to decode notifyBroadcasts#d612e8ef: %w", err)
tl_notify_peer_gen.go#L457: return fmt.Errorf("can't decode notifyBroadcasts#d612e8ef to nil")
tl_notify_peer_gen.go#L521: return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
tl_notify_peer_gen.go#L528: return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
tl_notify_peer_gen.go#L535: return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
tl_notify_peer_gen.go#L542: return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
tl_notify_peer_gen.go#L546: return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", bin.NewUnexpectedID(id))
tl_notify_peer_gen.go#L558: return fmt.Errorf("unable to decode NotifyPeerBox to nil")
tl_notify_peer_gen.go#L562: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_notify_peer_gen.go#L571: return fmt.Errorf("unable to encode NotifyPeerClass as nil")
tl_null_gen.go#L88: return fmt.Errorf("can't encode null#56730bcc as nil")
tl_null_gen.go#L97: return fmt.Errorf("can't encode null#56730bcc as nil")
tl_null_gen.go#L105: return fmt.Errorf("can't decode null#56730bcc to nil")
tl_null_gen.go#L108: return fmt.Errorf("unable to decode null#56730bcc: %w", err)
tl_null_gen.go#L116: return fmt.Errorf("can't decode null#56730bcc to nil")
tl_page_block_gen.go#L88: return fmt.Errorf("can't encode pageBlockUnsupported#13567e8a as nil")
tl_page_block_gen.go#L97: return fmt.Errorf("can't encode pageBlockUnsupported#13567e8a as nil")
tl_page_block_gen.go#L105: return fmt.Errorf("can't decode pageBlockUnsupported#13567e8a to nil")
tl_page_block_gen.go#L108: return fmt.Errorf("unable to decode pageBlockUnsupported#13567e8a: %w", err)
tl_page_block_gen.go#L116: return fmt.Errorf("can't decode pageBlockUnsupported#13567e8a to nil")
tl_page_block_gen.go#L207: return fmt.Errorf("can't encode pageBlockTitle#70abc3fd as nil")
tl_page_block_gen.go#L216: return fmt.Errorf("can't encode pageBlockTitle#70abc3fd as nil")
tl_page_block_gen.go#L219: return fmt.Errorf("unable to encode pageBlockTitle#70abc3fd: field text is nil")
tl_page_block_gen.go#L222: return fmt.Errorf("unable to encode pageBlockTitle#70abc3fd: field text: %w", err)
tl_page_block_gen.go#L235: return fmt.Errorf("can't decode pageBlockTitle#70abc3fd to nil")
tl_page_block_gen.go#L238: return fmt.Errorf("unable to decode pageBlockTitle#70abc3fd: %w", err)
tl_page_block_gen.go#L246: return fmt.Errorf("can't decode pageBlockTitle#70abc3fd to nil")
tl_page_block_gen.go#L251: return fmt.Errorf("unable to decode pageBlockTitle#70abc3fd: field text: %w", err)
tl_page_block_gen.go#L344: return fmt.Errorf("can't encode pageBlockSubtitle#8ffa9a1f as nil")
tl_page_block_gen.go#L353: return fmt.Errorf("can't encode pageBlockSubtitle#8ffa9a1f as nil")
tl_page_block_gen.go#L356: return fmt.Errorf("unable to encode pageBlockSubtitle#8ffa9a1f: field text is nil")
tl_page_block_gen.go#L359: return fmt.Errorf("unable to encode pageBlockSubtitle#8ffa9a1f: field text: %w", err)
tl_page_block_gen.go#L372: return fmt.Errorf("can't decode pageBlockSubtitle#8ffa9a1f to nil")
tl_page_block_gen.go#L375: return fmt.Errorf("unable to decode pageBlockSubtitle#8ffa9a1f: %w", err)
tl_page_block_gen.go#L383: return fmt.Errorf("can't decode pageBlockSubtitle#8ffa9a1f to nil")
tl_page_block_gen.go#L388: return fmt.Errorf("unable to decode pageBlockSubtitle#8ffa9a1f: field text: %w", err)
tl_page_block_gen.go#L492: return fmt.Errorf("can't encode pageBlockAuthorDate#baafe5e0 as nil")
tl_page_block_gen.go#L501: return fmt.Errorf("can't encode pageBlockAuthorDate#baafe5e0 as nil")
tl_page_block_gen.go#L504: return fmt.Errorf("unable to encode pageBlockAuthorDate#baafe5e0: field author is nil")
tl_page_block_gen.go#L507: return fmt.Errorf("unable to encode pageBlockAuthorDate#baafe5e0: field author: %w", err)
tl_page_block_gen.go#L526: return fmt.Errorf("can't decode pageBlockAuthorDate#baafe5e0 to nil")
tl_page_block_gen.go#L529: return fmt.Errorf("unable to decode pageBlockAuthorDate#baafe5e0: %w", err)
tl_page_block_gen.go#L537: return fmt.Errorf("can't decode pageBlockAuthorDate#baafe5e0 to nil")
tl_page_block_gen.go#L542: return fmt.Errorf("unable to decode pageBlockAuthorDate#baafe5e0: field author: %w", err)
tl_page_block_gen.go#L549: return fmt.Errorf("unable to decode pageBlockAuthorDate#baafe5e0: field published_date: %w", err)
tl_page_block_gen.go#L642: return fmt.Errorf("can't encode pageBlockHeader#bfd064ec as nil")
tl_page_block_gen.go#L651: return fmt.Errorf("can't encode pageBlockHeader#bfd064ec as nil")
tl_page_block_gen.go#L654: return fmt.Errorf("unable to encode pageBlockHeader#bfd064ec: field text is nil")
tl_page_block_gen.go#L657: return fmt.Errorf("unable to encode pageBlockHeader#bfd064ec: field text: %w", err)
tl_page_block_gen.go#L670: return fmt.Errorf("can't decode pageBlockHeader#bfd064ec to nil")
tl_page_block_gen.go#L673: return fmt.Errorf("unable to decode pageBlockHeader#bfd064ec: %w", err)
tl_page_block_gen.go#L681: return fmt.Errorf("can't decode pageBlockHeader#bfd064ec to nil")
tl_page_block_gen.go#L686: return fmt.Errorf("unable to decode pageBlockHeader#bfd064ec: field text: %w", err)
tl_page_block_gen.go#L779: return fmt.Errorf("can't encode pageBlockSubheader#f12bb6e1 as nil")
tl_page_block_gen.go#L788: return fmt.Errorf("can't encode pageBlockSubheader#f12bb6e1 as nil")
tl_page_block_gen.go#L791: return fmt.Errorf("unable to encode pageBlockSubheader#f12bb6e1: field text is nil")
tl_page_block_gen.go#L794: return fmt.Errorf("unable to encode pageBlockSubheader#f12bb6e1: field text: %w", err)
tl_page_block_gen.go#L807: return fmt.Errorf("can't decode pageBlockSubheader#f12bb6e1 to nil")
tl_page_block_gen.go#L810: return fmt.Errorf("unable to decode pageBlockSubheader#f12bb6e1: %w", err)
tl_page_block_gen.go#L818: return fmt.Errorf("can't decode pageBlockSubheader#f12bb6e1 to nil")
tl_page_block_gen.go#L823: return fmt.Errorf("unable to decode pageBlockSubheader#f12bb6e1: field text: %w", err)
tl_page_block_gen.go#L916: return fmt.Errorf("can't encode pageBlockParagraph#467a0766 as nil")
tl_page_block_gen.go#L925: return fmt.Errorf("can't encode pageBlockParagraph#467a0766 as nil")
tl_page_block_gen.go#L928: return fmt.Errorf("unable to encode pageBlockParagraph#467a0766: field text is nil")
tl_page_block_gen.go#L931: return fmt.Errorf("unable to encode pageBlockParagraph#467a0766: field text: %w", err)
tl_page_block_gen.go#L944: return fmt.Errorf("can't decode pageBlockParagraph#467a0766 to nil")
tl_page_block_gen.go#L947: return fmt.Errorf("unable to decode pageBlockParagraph#467a0766: %w", err)
tl_page_block_gen.go#L955: return fmt.Errorf("can't decode pageBlockParagraph#467a0766 to nil")
tl_page_block_gen.go#L960: return fmt.Errorf("unable to decode pageBlockParagraph#467a0766: field text: %w", err)
tl_page_block_gen.go#L1064: return fmt.Errorf("can't encode pageBlockPreformatted#c070d93e as nil")
tl_page_block_gen.go#L1073: return fmt.Errorf("can't encode pageBlockPreformatted#c070d93e as nil")
tl_page_block_gen.go#L1076: return fmt.Errorf("unable to encode pageBlockPreformatted#c070d93e: field text is nil")
tl_page_block_gen.go#L1079: return fmt.Errorf("unable to encode pageBlockPreformatted#c070d93e: field text: %w", err)
tl_page_block_gen.go#L1098: return fmt.Errorf("can't decode pageBlockPreformatted#c070d93e to nil")
tl_page_block_gen.go#L1101: return fmt.Errorf("unable to decode pageBlockPreformatted#c070d93e: %w", err)
tl_page_block_gen.go#L1109: return fmt.Errorf("can't decode pageBlockPreformatted#c070d93e to nil")
tl_page_block_gen.go#L1114: return fmt.Errorf("unable to decode pageBlockPreformatted#c070d93e: field text: %w", err)
tl_page_block_gen.go#L1121: return fmt.Errorf("unable to decode pageBlockPreformatted#c070d93e: field language: %w", err)
tl_page_block_gen.go#L1214: return fmt.Errorf("can't encode pageBlockFooter#48870999 as nil")
tl_page_block_gen.go#L1223: return fmt.Errorf("can't encode pageBlockFooter#48870999 as nil")
tl_page_block_gen.go#L1226: return fmt.Errorf("unable to encode pageBlockFooter#48870999: field text is nil")
tl_page_block_gen.go#L1229: return fmt.Errorf("unable to encode pageBlockFooter#48870999: field text: %w", err)
tl_page_block_gen.go#L1242: return fmt.Errorf("can't decode pageBlockFooter#48870999 to nil")
tl_page_block_gen.go#L1245: return fmt.Errorf("unable to decode pageBlockFooter#48870999: %w", err)
tl_page_block_gen.go#L1253: return fmt.Errorf("can't decode pageBlockFooter#48870999 to nil")
tl_page_block_gen.go#L1258: return fmt.Errorf("unable to decode pageBlockFooter#48870999: field text: %w", err)
tl_page_block_gen.go#L1334: return fmt.Errorf("can't encode pageBlockDivider#db20b188 as nil")
tl_page_block_gen.go#L1343: return fmt.Errorf("can't encode pageBlockDivider#db20b188 as nil")
tl_page_block_gen.go#L1351: return fmt.Errorf("can't decode pageBlockDivider#db20b188 to nil")
tl_page_block_gen.go#L1354: return fmt.Errorf("unable to decode pageBlockDivider#db20b188: %w", err)
tl_page_block_gen.go#L1362: return fmt.Errorf("can't decode pageBlockDivider#db20b188 to nil")
tl_page_block_gen.go#L1453: return fmt.Errorf("can't encode pageBlockAnchor#ce0d37b0 as nil")
tl_page_block_gen.go#L1462: return fmt.Errorf("can't encode pageBlockAnchor#ce0d37b0 as nil")
tl_page_block_gen.go#L1476: return fmt.Errorf("can't decode pageBlockAnchor#ce0d37b0 to nil")
tl_page_block_gen.go#L1479: return fmt.Errorf("unable to decode pageBlockAnchor#ce0d37b0: %w", err)
tl_page_block_gen.go#L1487: return fmt.Errorf("can't decode pageBlockAnchor#ce0d37b0 to nil")
tl_page_block_gen.go#L1492: return fmt.Errorf("unable to decode pageBlockAnchor#ce0d37b0: field name: %w", err)
tl_page_block_gen.go#L1585: return fmt.Errorf("can't encode pageBlockList#e4e88011 as nil")
tl_page_block_gen.go#L1594: return fmt.Errorf("can't encode pageBlockList#e4e88011 as nil")
tl_page_block_gen.go#L1599: return fmt.Errorf("unable to encode pageBlockList#e4e88011: field items element with index %d is nil", idx)
tl_page_block_gen.go#L1602: return fmt.Errorf("unable to encode pageBlockList#e4e88011: field items element with index %d: %w", idx, err)
tl_page_block_gen.go#L1621: return fmt.Errorf("can't decode pageBlockList#e4e88011 to nil")
tl_page_block_gen.go#L1624: return fmt.Errorf("unable to decode pageBlockList#e4e88011: %w", err)
tl_page_block_gen.go#L1632: return fmt.Errorf("can't decode pageBlockList#e4e88011 to nil")
tl_page_block_gen.go#L1637: return fmt.Errorf("unable to decode pageBlockList#e4e88011: field items: %w", err)
tl_page_block_gen.go#L1642: return fmt.Errorf("unable to decode pageBlockList#e4e88011: field items: %w", err)
tl_page_block_gen.go#L1747: return fmt.Errorf("can't encode pageBlockBlockquote#263d7c26 as nil")
tl_page_block_gen.go#L1756: return fmt.Errorf("can't encode pageBlockBlockquote#263d7c26 as nil")
tl_page_block_gen.go#L1759: return fmt.Errorf("unable to encode pageBlockBlockquote#263d7c26: field text is nil")
tl_page_block_gen.go#L1762: return fmt.Errorf("unable to encode pageBlockBlockquote#263d7c26: field text: %w", err)
tl_page_block_gen.go#L1765: return fmt.Errorf("unable to encode pageBlockBlockquote#263d7c26: field caption is nil")
tl_page_block_gen.go#L1768: return fmt.Errorf("unable to encode pageBlockBlockquote#263d7c26: field caption: %w", err)
tl_page_block_gen.go#L1786: return fmt.Errorf("can't decode pageBlockBlockquote#263d7c26 to nil")
tl_page_block_gen.go#L1789: return fmt.Errorf("unable to decode pageBlockBlockquote#263d7c26: %w", err)
tl_page_block_gen.go#L1797: return fmt.Errorf("can't decode pageBlockBlockquote#263d7c26 to nil")
tl_page_block_gen.go#L1802: return fmt.Errorf("unable to decode pageBlockBlockquote#263d7c26: field text: %w", err)
tl_page_block_gen.go#L1809: return fmt.Errorf("unable to decode pageBlockBlockquote#263d7c26: field caption: %w", err)
tl_page_block_gen.go#L1913: return fmt.Errorf("can't encode pageBlockPullquote#4f4456d3 as nil")
tl_page_block_gen.go#L1922: return fmt.Errorf("can't encode pageBlockPullquote#4f4456d3 as nil")
tl_page_block_gen.go#L1925: return fmt.Errorf("unable to encode pageBlockPullquote#4f4456d3: field text is nil")
tl_page_block_gen.go#L1928: return fmt.Errorf("unable to encode pageBlockPullquote#4f4456d3: field text: %w", err)
tl_page_block_gen.go#L1931: return fmt.Errorf("unable to encode pageBlockPullquote#4f4456d3: field caption is nil")
tl_page_block_gen.go#L1934: return fmt.Errorf("unable to encode pageBlockPullquote#4f4456d3: field caption: %w", err)
tl_page_block_gen.go#L1952: return fmt.Errorf("can't decode pageBlockPullquote#4f4456d3 to nil")
tl_page_block_gen.go#L1955: return fmt.Errorf("unable to decode pageBlockPullquote#4f4456d3: %w", err)
tl_page_block_gen.go#L1963: return fmt.Errorf("can't decode pageBlockPullquote#4f4456d3 to nil")
tl_page_block_gen.go#L1968: return fmt.Errorf("unable to decode pageBlockPullquote#4f4456d3: field text: %w", err)
tl_page_block_gen.go#L1975: return fmt.Errorf("unable to decode pageBlockPullquote#4f4456d3: field caption: %w", err)
tl_page_block_gen.go#L2121: return fmt.Errorf("can't encode pageBlockPhoto#1759c560 as nil")
tl_page_block_gen.go#L2130: return fmt.Errorf("can't encode pageBlockPhoto#1759c560 as nil")
tl_page_block_gen.go#L2139: return fmt.Errorf("unable to encode pageBlockPhoto#1759c560: field flags: %w", err)
tl_page_block_gen.go#L2143: return fmt.Errorf("unable to encode pageBlockPhoto#1759c560: field caption: %w", err)
tl_page_block_gen.go#L2197: return fmt.Errorf("can't decode pageBlockPhoto#1759c560 to nil")
tl_page_block_gen.go#L2200: return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: %w", err)
tl_page_block_gen.go#L2208: return fmt.Errorf("can't decode pageBlockPhoto#1759c560 to nil")
tl_page_block_gen.go#L2212: return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field flags: %w", err)
tl_page_block_gen.go#L2218: return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field photo_id: %w", err)
tl_page_block_gen.go#L2224: return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field caption: %w", err)
tl_page_block_gen.go#L2230: return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field url: %w", err)
tl_page_block_gen.go#L2237: return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field webpage_id: %w", err)
tl_page_block_gen.go#L2373: return fmt.Errorf("can't encode pageBlockVideo#7c8fe7b6 as nil")
tl_page_block_gen.go#L2382: return fmt.Errorf("can't encode pageBlockVideo#7c8fe7b6 as nil")
tl_page_block_gen.go#L2391: return fmt.Errorf("unable to encode pageBlockVideo#7c8fe7b6: field flags: %w", err)
tl_page_block_gen.go#L2395: return fmt.Errorf("unable to encode pageBlockVideo#7c8fe7b6: field caption: %w", err)
tl_page_block_gen.go#L2445: return fmt.Errorf("can't decode pageBlockVideo#7c8fe7b6 to nil")
tl_page_block_gen.go#L2448: return fmt.Errorf("unable to decode pageBlockVideo#7c8fe7b6: %w", err)
tl_page_block_gen.go#L2456: return fmt.Errorf("can't decode pageBlockVideo#7c8fe7b6 to nil")
tl_page_block_gen.go#L2460: return fmt.Errorf("unable to decode pageBlockVideo#7c8fe7b6: field flags: %w", err)
tl_page_block_gen.go#L2468: return fmt.Errorf("unable to decode pageBlockVideo#7c8fe7b6: field video_id: %w", err)
tl_page_block_gen.go#L2474: return fmt.Errorf("unable to decode pageBlockVideo#7c8fe7b6: field caption: %w", err)
tl_page_block_gen.go#L2566: return fmt.Errorf("can't encode pageBlockCover#39f23300 as nil")
tl_page_block_gen.go#L2575: return fmt.Errorf("can't encode pageBlockCover#39f23300 as nil")
tl_page_block_gen.go#L2578: return fmt.Errorf("unable to encode pageBlockCover#39f23300: field cover is nil")
tl_page_block_gen.go#L2581: return fmt.Errorf("unable to encode pageBlockCover#39f23300: field cover: %w", err)
tl_page_block_gen.go#L2594: return fmt.Errorf("can't decode pageBlockCover#39f23300 to nil")
tl_page_block_gen.go#L2597: return fmt.Errorf("unable to decode pageBlockCover#39f23300: %w", err)
tl_page_block_gen.go#L2605: return fmt.Errorf("can't decode pageBlockCover#39f23300 to nil")
tl_page_block_gen.go#L2610: return fmt.Errorf("unable to decode pageBlockCover#39f23300: field cover: %w", err)
tl_page_block_gen.go#L2820: return fmt.Errorf("can't encode pageBlockEmbed#a8718dc5 as nil")
tl_page_block_gen.go#L2829: return fmt.Errorf("can't encode pageBlockEmbed#a8718dc5 as nil")
tl_page_block_gen.go#L2853: return fmt.Errorf("unable to encode pageBlockEmbed#a8718dc5: field flags: %w", err)
tl_page_block_gen.go#L2871: return fmt.Errorf("unable to encode pageBlockEmbed#a8718dc5: field caption: %w", err)
tl_page_block_gen.go#L2991: return fmt.Errorf("can't decode pageBlockEmbed#a8718dc5 to nil")
tl_page_block_gen.go#L2994: return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: %w", err)
tl_page_block_gen.go#L3002: return fmt.Errorf("can't decode pageBlockEmbed#a8718dc5 to nil")
tl_page_block_gen.go#L3006: return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field flags: %w", err)
tl_page_block_gen.go#L3014: return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field url: %w", err)
tl_page_block_gen.go#L3021: return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field html: %w", err)
tl_page_block_gen.go#L3028: return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field poster_photo_id: %w", err)
tl_page_block_gen.go#L3035: return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field w: %w", err)
tl_page_block_gen.go#L3042: return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field h: %w", err)
tl_page_block_gen.go#L3048: return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field caption: %w", err)
tl_page_block_gen.go#L3206: return fmt.Errorf("can't encode pageBlockEmbedPost#f259a80b as nil")
tl_page_block_gen.go#L3215: return fmt.Errorf("can't encode pageBlockEmbedPost#f259a80b as nil")
tl_page_block_gen.go#L3225: return fmt.Errorf("unable to encode pageBlockEmbedPost#f259a80b: field blocks element with index %d is nil", idx)
tl_page_block_gen.go#L3228: return fmt.Errorf("unable to encode pageBlockEmbedPost#f259a80b: field blocks element with index %d: %w", idx, err)
tl_page_block_gen.go#L3232: return fmt.Errorf("unable to encode pageBlockEmbedPost#f259a80b: field caption: %w", err)
tl_page_block_gen.go#L3280: return fmt.Errorf("can't decode pageBlockEmbedPost#f259a80b to nil")
tl_page_block_gen.go#L3283: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: %w", err)
tl_page_block_gen.go#L3291: return fmt.Errorf("can't decode pageBlockEmbedPost#f259a80b to nil")
tl_page_block_gen.go#L3296: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field url: %w", err)
tl_page_block_gen.go#L3303: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field webpage_id: %w", err)
tl_page_block_gen.go#L3310: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field author_photo_id: %w", err)
tl_page_block_gen.go#L3317: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field author: %w", err)
tl_page_block_gen.go#L3324: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field date: %w", err)
tl_page_block_gen.go#L3331: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field blocks: %w", err)
tl_page_block_gen.go#L3336: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field blocks: %w", err)
tl_page_block_gen.go#L3343: return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field caption: %w", err)
tl_page_block_gen.go#L3446: return fmt.Errorf("can't encode pageBlockCollage#65a0fa4d as nil")
tl_page_block_gen.go#L3455: return fmt.Errorf("can't encode pageBlockCollage#65a0fa4d as nil")
tl_page_block_gen.go#L3460: return fmt.Errorf("unable to encode pageBlockCollage#65a0fa4d: field items element with index %d is nil", idx)
tl_page_block_gen.go#L3463: return fmt.Errorf("unable to encode pageBlockCollage#65a0fa4d: field items element with index %d: %w", idx, err)
tl_page_block_gen.go#L3467: return fmt.Errorf("unable to encode pageBlockCollage#65a0fa4d: field caption: %w", err)
tl_page_block_gen.go#L3490: return fmt.Errorf("can't decode pageBlockCollage#65a0fa4d to nil")
tl_page_block_gen.go#L3493: return fmt.Errorf("unable to decode pageBlockCollage#65a0fa4d: %w", err)
tl_page_block_gen.go#L3501: return fmt.Errorf("can't decode pageBlockCollage#65a0fa4d to nil")
tl_page_block_gen.go#L3506: return fmt.Errorf("unable to decode pageBlockCollage#65a0fa4d: field items: %w", err)
tl_page_block_gen.go#L3511: return fmt.Errorf("unable to decode pageBlockCollage#65a0fa4d: field items: %w", err)
tl_page_block_gen.go#L3518: return fmt.Errorf("unable to decode pageBlockCollage#65a0fa4d: field caption: %w", err)
tl_page_block_gen.go#L3621: return fmt.Errorf("can't encode pageBlockSlideshow#31f9590 as nil")
tl_page_block_gen.go#L3630: return fmt.Errorf("can't encode pageBlockSlideshow#31f9590 as nil")
tl_page_block_gen.go#L3635: return fmt.Errorf("unable to encode pageBlockSlideshow#31f9590: field items element with index %d is nil", idx)
tl_page_block_gen.go#L3638: return fmt.Errorf("unable to encode pageBlockSlideshow#31f9590: field items element with index %d: %w", idx, err)
tl_page_block_gen.go#L3642: return fmt.Errorf("unable to encode pageBlockSlideshow#31f9590: field caption: %w", err)
tl_page_block_gen.go#L3665: return fmt.Errorf("can't decode pageBlockSlideshow#31f9590 to nil")
tl_page_block_gen.go#L3668: return fmt.Errorf("unable to decode pageBlockSlideshow#31f9590: %w", err)
tl_page_block_gen.go#L3676: return fmt.Errorf("can't decode pageBlockSlideshow#31f9590 to nil")
tl_page_block_gen.go#L3681: return fmt.Errorf("unable to decode pageBlockSlideshow#31f9590: field items: %w", err)
tl_page_block_gen.go#L3686: return fmt.Errorf("unable to decode pageBlockSlideshow#31f9590: field items: %w", err)
tl_page_block_gen.go#L3693: return fmt.Errorf("unable to decode pageBlockSlideshow#31f9590: field caption: %w", err)
tl_page_block_gen.go#L3785: return fmt.Errorf("can't encode pageBlockChannel#ef1751b5 as nil")
tl_page_block_gen.go#L3794: return fmt.Errorf("can't encode pageBlockChannel#ef1751b5 as nil")
tl_page_block_gen.go#L3797: return fmt.Errorf("unable to encode pageBlockChannel#ef1751b5: field channel is nil")
tl_page_block_gen.go#L3800: return fmt.Errorf("unable to encode pageBlockChannel#ef1751b5: field channel: %w", err)
tl_page_block_gen.go#L3813: return fmt.Errorf("can't decode pageBlockChannel#ef1751b5 to nil")
tl_page_block_gen.go#L3816: return fmt.Errorf("unable to decode pageBlockChannel#ef1751b5: %w", err)
tl_page_block_gen.go#L3824: return fmt.Errorf("can't decode pageBlockChannel#ef1751b5 to nil")
tl_page_block_gen.go#L3829: return fmt.Errorf("unable to decode pageBlockChannel#ef1751b5: field channel: %w", err)
tl_page_block_gen.go#L3936: return fmt.Errorf("can't encode pageBlockAudio#804361ea as nil")
tl_page_block_gen.go#L3945: return fmt.Errorf("can't encode pageBlockAudio#804361ea as nil")
tl_page_block_gen.go#L3949: return fmt.Errorf("unable to encode pageBlockAudio#804361ea: field caption: %w", err)
tl_page_block_gen.go#L3967: return fmt.Errorf("can't decode pageBlockAudio#804361ea to nil")
tl_page_block_gen.go#L3970: return fmt.Errorf("unable to decode pageBlockAudio#804361ea: %w", err)
tl_page_block_gen.go#L3978: return fmt.Errorf("can't decode pageBlockAudio#804361ea to nil")
tl_page_block_gen.go#L3983: return fmt.Errorf("unable to decode pageBlockAudio#804361ea: field audio_id: %w", err)
tl_page_block_gen.go#L3989: return fmt.Errorf("unable to decode pageBlockAudio#804361ea: field caption: %w", err)
tl_page_block_gen.go#L4081: return fmt.Errorf("can't encode pageBlockKicker#1e148390 as nil")
tl_page_block_gen.go#L4090: return fmt.Errorf("can't encode pageBlockKicker#1e148390 as nil")
tl_page_block_gen.go#L4093: return fmt.Errorf("unable to encode pageBlockKicker#1e148390: field text is nil")
tl_page_block_gen.go#L4096: return fmt.Errorf("unable to encode pageBlockKicker#1e148390: field text: %w", err)
tl_page_block_gen.go#L4109: return fmt.Errorf("can't decode pageBlockKicker#1e148390 to nil")
tl_page_block_gen.go#L4112: return fmt.Errorf("unable to decode pageBlockKicker#1e148390: %w", err)
tl_page_block_gen.go#L4120: return fmt.Errorf("can't decode pageBlockKicker#1e148390 to nil")
tl_page_block_gen.go#L4125: return fmt.Errorf("unable to decode pageBlockKicker#1e148390: field text: %w", err)
tl_page_block_gen.go#L4261: return fmt.Errorf("can't encode pageBlockTable#bf4dea82 as nil")
tl_page_block_gen.go#L4270: return fmt.Errorf("can't encode pageBlockTable#bf4dea82 as nil")
tl_page_block_gen.go#L4279: return fmt.Errorf("unable to encode pageBlockTable#bf4dea82: field flags: %w", err)
tl_page_block_gen.go#L4282: return fmt.Errorf("unable to encode pageBlockTable#bf4dea82: field title is nil")
tl_page_block_gen.go#L4285: return fmt.Errorf("unable to encode pageBlockTable#bf4dea82: field title: %w", err)
tl_page_block_gen.go#L4290: return fmt.Errorf("unable to encode pageBlockTable#bf4dea82: field rows element with index %d: %w", idx, err)
tl_page_block_gen.go#L4341: return fmt.Errorf("can't decode pageBlockTable#bf4dea82 to nil")
tl_page_block_gen.go#L4344: return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: %w", err)
tl_page_block_gen.go#L4352: return fmt.Errorf("can't decode pageBlockTable#bf4dea82 to nil")
tl_page_block_gen.go#L4356: return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: field flags: %w", err)
tl_page_block_gen.go#L4364: return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: field title: %w", err)
tl_page_block_gen.go#L4371: return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: field rows: %w", err)
tl_page_block_gen.go#L4376: return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: field rows: %w", err)
tl_page_block_gen.go#L4470: return fmt.Errorf("can't encode pageBlockOrderedList#9a8ae1e1 as nil")
tl_page_block_gen.go#L4479: return fmt.Errorf("can't encode pageBlockOrderedList#9a8ae1e1 as nil")
tl_page_block_gen.go#L4484: return fmt.Errorf("unable to encode pageBlockOrderedList#9a8ae1e1: field items element with index %d is nil", idx)
tl_page_block_gen.go#L4487: return fmt.Errorf("unable to encode pageBlockOrderedList#9a8ae1e1: field items element with index %d: %w", idx, err)
tl_page_block_gen.go#L4506: return fmt.Errorf("can't decode pageBlockOrderedList#9a8ae1e1 to nil")
tl_page_block_gen.go#L4509: return fmt.Errorf("unable to decode pageBlockOrderedList#9a8ae1e1: %w", err)
tl_page_block_gen.go#L4517: return fmt.Errorf("can't decode pageBlockOrderedList#9a8ae1e1 to nil")
tl_page_block_gen.go#L4522: return fmt.Errorf("unable to decode pageBlockOrderedList#9a8ae1e1: field items: %w", err)
tl_page_block_gen.go#L4527: return fmt.Errorf("unable to decode pageBlockOrderedList#9a8ae1e1: field items: %w", err)
tl_page_block_gen.go#L4652: return fmt.Errorf("can't encode pageBlockDetails#76768bed as nil")
tl_page_block_gen.go#L4661: return fmt.Errorf("can't encode pageBlockDetails#76768bed as nil")
tl_page_block_gen.go#L4667: return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field flags: %w", err)
tl_page_block_gen.go#L4672: return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field blocks element with index %d is nil", idx)
tl_page_block_gen.go#L4675: return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field blocks element with index %d: %w", idx, err)
tl_page_block_gen.go#L4679: return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field title is nil")
tl_page_block_gen.go#L4682: return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field title: %w", err)
tl_page_block_gen.go#L4721: return fmt.Errorf("can't decode pageBlockDetails#76768bed to nil")
tl_page_block_gen.go#L4724: return fmt.Errorf("unable to decode pageBlockDetails#76768bed: %w", err)
tl_page_block_gen.go#L4732: return fmt.Errorf("can't decode pageBlockDetails#76768bed to nil")
tl_page_block_gen.go#L4736: return fmt.Errorf("unable to decode pageBlockDetails#76768bed: field flags: %w", err)
tl_page_block_gen.go#L4743: return fmt.Errorf("unable to decode pageBlockDetails#76768bed: field blocks: %w", err)
tl_page_block_gen.go#L4748: return fmt.Errorf("unable to decode pageBlockDetails#76768bed: field blocks: %w", err)
tl_page_block_gen.go#L4756: return fmt.Errorf("unable to decode pageBlockDetails#76768bed: field title: %w", err)
tl_page_block_gen.go#L4860: return fmt.Errorf("can't encode pageBlockRelatedArticles#16115a96 as nil")
tl_page_block_gen.go#L4869: return fmt.Errorf("can't encode pageBlockRelatedArticles#16115a96 as nil")
tl_page_block_gen.go#L4872: return fmt.Errorf("unable to encode pageBlockRelatedArticles#16115a96: field title is nil")
tl_page_block_gen.go#L4875: return fmt.Errorf("unable to encode pageBlockRelatedArticles#16115a96: field title: %w", err)
tl_page_block_gen.go#L4880: return fmt.Errorf("unable to encode pageBlockRelatedArticles#16115a96: field articles element with index %d: %w", idx, err)
tl_page_block_gen.go#L4899: return fmt.Errorf("can't decode pageBlockRelatedArticles#16115a96 to nil")
tl_page_block_gen.go#L4902: return fmt.Errorf("unable to decode pageBlockRelatedArticles#16115a96: %w", err)
tl_page_block_gen.go#L4910: return fmt.Errorf("can't decode pageBlockRelatedArticles#16115a96 to nil")
tl_page_block_gen.go#L4915: return fmt.Errorf("unable to decode pageBlockRelatedArticles#16115a96: field title: %w", err)
tl_page_block_gen.go#L4922: return fmt.Errorf("unable to decode pageBlockRelatedArticles#16115a96: field articles: %w", err)
tl_page_block_gen.go#L4927: return fmt.Errorf("unable to decode pageBlockRelatedArticles#16115a96: field articles: %w", err)
tl_page_block_gen.go#L5065: return fmt.Errorf("can't encode pageBlockMap#a44f3ef6 as nil")
tl_page_block_gen.go#L5074: return fmt.Errorf("can't encode pageBlockMap#a44f3ef6 as nil")
tl_page_block_gen.go#L5077: return fmt.Errorf("unable to encode pageBlockMap#a44f3ef6: field geo is nil")
tl_page_block_gen.go#L5080: return fmt.Errorf("unable to encode pageBlockMap#a44f3ef6: field geo: %w", err)
tl_page_block_gen.go#L5086: return fmt.Errorf("unable to encode pageBlockMap#a44f3ef6: field caption: %w", err)
tl_page_block_gen.go#L5119: return fmt.Errorf("can't decode pageBlockMap#a44f3ef6 to nil")
tl_page_block_gen.go#L5122: return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: %w", err)
tl_page_block_gen.go#L5130: return fmt.Errorf("can't decode pageBlockMap#a44f3ef6 to nil")
tl_page_block_gen.go#L5135: return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field geo: %w", err)
tl_page_block_gen.go#L5142: return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field zoom: %w", err)
tl_page_block_gen.go#L5149: return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field w: %w", err)
tl_page_block_gen.go#L5156: return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field h: %w", err)
tl_page_block_gen.go#L5162: return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field caption: %w", err)
tl_page_block_gen.go#L5252: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5259: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5266: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5273: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5280: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5287: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5294: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5301: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5308: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5315: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5322: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5329: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5336: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5343: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5350: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5357: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5364: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5371: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5378: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5385: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5392: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5399: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5406: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5413: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5420: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5427: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5434: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5441: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5448: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
tl_page_block_gen.go#L5452: return nil, fmt.Errorf("unable to decode PageBlockClass: %w", bin.NewUnexpectedID(id))
tl_page_block_gen.go#L5464: return fmt.Errorf("unable to decode PageBlockBox to nil")
tl_page_block_gen.go#L5468: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_page_block_gen.go#L5477: return fmt.Errorf("unable to encode PageBlockClass as nil")
tl_page_caption_gen.go#L116: return fmt.Errorf("can't encode pageCaption#6f747657 as nil")
tl_page_caption_gen.go#L125: return fmt.Errorf("can't encode pageCaption#6f747657 as nil")
tl_page_caption_gen.go#L128: return fmt.Errorf("unable to encode pageCaption#6f747657: field text is nil")
tl_page_caption_gen.go#L131: return fmt.Errorf("unable to encode pageCaption#6f747657: field text: %w", err)
tl_page_caption_gen.go#L134: return fmt.Errorf("unable to encode pageCaption#6f747657: field credit is nil")
tl_page_caption_gen.go#L137: return fmt.Errorf("unable to encode pageCaption#6f747657: field credit: %w", err)
tl_page_caption_gen.go#L155: return fmt.Errorf("can't decode pageCaption#6f747657 to nil")
tl_page_caption_gen.go#L158: return fmt.Errorf("unable to decode pageCaption#6f747657: %w", err)
tl_page_caption_gen.go#L166: return fmt.Errorf("can't decode pageCaption#6f747657 to nil")
tl_page_caption_gen.go#L171: return fmt.Errorf("unable to decode pageCaption#6f747657: field text: %w", err)
tl_page_caption_gen.go#L178: return fmt.Errorf("unable to decode pageCaption#6f747657: field credit: %w", err)
tl_page_gen.go#L209: return fmt.Errorf("can't encode page#98657f0d as nil")
tl_page_gen.go#L218: return fmt.Errorf("can't encode page#98657f0d as nil")
tl_page_gen.go#L233: return fmt.Errorf("unable to encode page#98657f0d: field flags: %w", err)
tl_page_gen.go#L239: return fmt.Errorf("unable to encode page#98657f0d: field blocks element with index %d is nil", idx)
tl_page_gen.go#L242: return fmt.Errorf("unable to encode page#98657f0d: field blocks element with index %d: %w", idx, err)
tl_page_gen.go#L248: return fmt.Errorf("unable to encode page#98657f0d: field photos element with index %d is nil", idx)
tl_page_gen.go#L251: return fmt.Errorf("unable to encode page#98657f0d: field photos element with index %d: %w", idx, err)
tl_page_gen.go#L257: return fmt.Errorf("unable to encode page#98657f0d: field documents element with index %d is nil", idx)
tl_page_gen.go#L260: return fmt.Errorf("unable to encode page#98657f0d: field documents element with index %d: %w", idx, err)
tl_page_gen.go#L370: return fmt.Errorf("can't decode page#98657f0d to nil")
tl_page_gen.go#L373: return fmt.Errorf("unable to decode page#98657f0d: %w", err)
tl_page_gen.go#L381: return fmt.Errorf("can't decode page#98657f0d to nil")
tl_page_gen.go#L385: return fmt.Errorf("unable to decode page#98657f0d: field flags: %w", err)
tl_page_gen.go#L394: return fmt.Errorf("unable to decode page#98657f0d: field url: %w", err)
tl_page_gen.go#L401: return fmt.Errorf("unable to decode page#98657f0d: field blocks: %w", err)
tl_page_gen.go#L406: return fmt.Errorf("unable to decode page#98657f0d: field blocks: %w", err)
tl_page_gen.go#L414: return fmt.Errorf("unable to decode page#98657f0d: field photos: %w", err)
tl_page_gen.go#L419: return fmt.Errorf("unable to decode page#98657f0d: field photos: %w", err)
tl_page_gen.go#L427: return fmt.Errorf("unable to decode page#98657f0d: field documents: %w", err)
tl_page_gen.go#L432: return fmt.Errorf("unable to decode page#98657f0d: field documents: %w", err)
tl_page_gen.go#L440: return fmt.Errorf("unable to decode page#98657f0d: field views: %w", err)
tl_page_list_item_gen.go#L105: return fmt.Errorf("can't encode pageListItemText#b92fb6cd as nil")
tl_page_list_item_gen.go#L114: return fmt.Errorf("can't encode pageListItemText#b92fb6cd as nil")
tl_page_list_item_gen.go#L117: return fmt.Errorf("unable to encode pageListItemText#b92fb6cd: field text is nil")
tl_page_list_item_gen.go#L120: return fmt.Errorf("unable to encode pageListItemText#b92fb6cd: field text: %w", err)
tl_page_list_item_gen.go#L133: return fmt.Errorf("can't decode pageListItemText#b92fb6cd to nil")
tl_page_list_item_gen.go#L136: return fmt.Errorf("unable to decode pageListItemText#b92fb6cd: %w", err)
tl_page_list_item_gen.go#L144: return fmt.Errorf("can't decode pageListItemText#b92fb6cd to nil")
tl_page_list_item_gen.go#L149: return fmt.Errorf("unable to decode pageListItemText#b92fb6cd: field text: %w", err)
tl_page_list_item_gen.go#L242: return fmt.Errorf("can't encode pageListItemBlocks#25e073fc as nil")
tl_page_list_item_gen.go#L251: return fmt.Errorf("can't encode pageListItemBlocks#25e073fc as nil")
tl_page_list_item_gen.go#L256: return fmt.Errorf("unable to encode pageListItemBlocks#25e073fc: field blocks element with index %d is nil", idx)
tl_page_list_item_gen.go#L259: return fmt.Errorf("unable to encode pageListItemBlocks#25e073fc: field blocks element with index %d: %w", idx, err)
tl_page_list_item_gen.go#L278: return fmt.Errorf("can't decode pageListItemBlocks#25e073fc to nil")
tl_page_list_item_gen.go#L281: return fmt.Errorf("unable to decode pageListItemBlocks#25e073fc: %w", err)
tl_page_list_item_gen.go#L289: return fmt.Errorf("can't decode pageListItemBlocks#25e073fc to nil")
tl_page_list_item_gen.go#L294: return fmt.Errorf("unable to decode pageListItemBlocks#25e073fc: field blocks: %w", err)
tl_page_list_item_gen.go#L299: return fmt.Errorf("unable to decode pageListItemBlocks#25e073fc: field blocks: %w", err)
tl_page_list_item_gen.go#L364: return nil, fmt.Errorf("unable to decode PageListItemClass: %w", err)
tl_page_list_item_gen.go#L371: return nil, fmt.Errorf("unable to decode PageListItemClass: %w", err)
tl_page_list_item_gen.go#L375: return nil, fmt.Errorf("unable to decode PageListItemClass: %w", bin.NewUnexpectedID(id))
tl_page_list_item_gen.go#L387: return fmt.Errorf("unable to decode PageListItemBox to nil")
tl_page_list_item_gen.go#L391: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_page_list_item_gen.go#L400: return fmt.Errorf("unable to encode PageListItemClass as nil")
tl_page_list_ordered_item_gen.go#L116: return fmt.Errorf("can't encode pageListOrderedItemText#5e068047 as nil")
tl_page_list_ordered_item_gen.go#L125: return fmt.Errorf("can't encode pageListOrderedItemText#5e068047 as nil")
tl_page_list_ordered_item_gen.go#L129: return fmt.Errorf("unable to encode pageListOrderedItemText#5e068047: field text is nil")
tl_page_list_ordered_item_gen.go#L132: return fmt.Errorf("unable to encode pageListOrderedItemText#5e068047: field text: %w", err)
tl_page_list_ordered_item_gen.go#L150: return fmt.Errorf("can't decode pageListOrderedItemText#5e068047 to nil")
tl_page_list_ordered_item_gen.go#L153: return fmt.Errorf("unable to decode pageListOrderedItemText#5e068047: %w", err)
tl_page_list_ordered_item_gen.go#L161: return fmt.Errorf("can't decode pageListOrderedItemText#5e068047 to nil")
tl_page_list_ordered_item_gen.go#L166: return fmt.Errorf("unable to decode pageListOrderedItemText#5e068047: field num: %w", err)
tl_page_list_ordered_item_gen.go#L173: return fmt.Errorf("unable to decode pageListOrderedItemText#5e068047: field text: %w", err)
tl_page_list_ordered_item_gen.go#L280: return fmt.Errorf("can't encode pageListOrderedItemBlocks#98dd8936 as nil")
tl_page_list_ordered_item_gen.go#L289: return fmt.Errorf("can't encode pageListOrderedItemBlocks#98dd8936 as nil")
tl_page_list_ordered_item_gen.go#L295: return fmt.Errorf("unable to encode pageListOrderedItemBlocks#98dd8936: field blocks element with index %d is nil", idx)
tl_page_list_ordered_item_gen.go#L298: return fmt.Errorf("unable to encode pageListOrderedItemBlocks#98dd8936: field blocks element with index %d: %w", idx, err)
tl_page_list_ordered_item_gen.go#L322: return fmt.Errorf("can't decode pageListOrderedItemBlocks#98dd8936 to nil")
tl_page_list_ordered_item_gen.go#L325: return fmt.Errorf("unable to decode pageListOrderedItemBlocks#98dd8936: %w", err)
tl_page_list_ordered_item_gen.go#L333: return fmt.Errorf("can't decode pageListOrderedItemBlocks#98dd8936 to nil")
tl_page_list_ordered_item_gen.go#L338: return fmt.Errorf("unable to decode pageListOrderedItemBlocks#98dd8936: field num: %w", err)
tl_page_list_ordered_item_gen.go#L345: return fmt.Errorf("unable to decode pageListOrderedItemBlocks#98dd8936: field blocks: %w", err)
tl_page_list_ordered_item_gen.go#L350: return fmt.Errorf("unable to decode pageListOrderedItemBlocks#98dd8936: field blocks: %w", err)
tl_page_list_ordered_item_gen.go#L418: return nil, fmt.Errorf("unable to decode PageListOrderedItemClass: %w", err)
tl_page_list_ordered_item_gen.go#L425: return nil, fmt.Errorf("unable to decode PageListOrderedItemClass: %w", err)
tl_page_list_ordered_item_gen.go#L429: return nil, fmt.Errorf("unable to decode PageListOrderedItemClass: %w", bin.NewUnexpectedID(id))
tl_page_list_ordered_item_gen.go#L441: return fmt.Errorf("unable to decode PageListOrderedItemBox to nil")
tl_page_list_ordered_item_gen.go#L445: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_page_list_ordered_item_gen.go#L454: return fmt.Errorf("unable to encode PageListOrderedItemClass as nil")
tl_page_related_article_gen.go#L209: return fmt.Errorf("can't encode pageRelatedArticle#b390dc08 as nil")
tl_page_related_article_gen.go#L218: return fmt.Errorf("can't encode pageRelatedArticle#b390dc08 as nil")
tl_page_related_article_gen.go#L236: return fmt.Errorf("unable to encode pageRelatedArticle#b390dc08: field flags: %w", err)
tl_page_related_article_gen.go#L346: return fmt.Errorf("can't decode pageRelatedArticle#b390dc08 to nil")
tl_page_related_article_gen.go#L349: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: %w", err)
tl_page_related_article_gen.go#L357: return fmt.Errorf("can't decode pageRelatedArticle#b390dc08 to nil")
tl_page_related_article_gen.go#L361: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field flags: %w", err)
tl_page_related_article_gen.go#L367: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field url: %w", err)
tl_page_related_article_gen.go#L374: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field webpage_id: %w", err)
tl_page_related_article_gen.go#L381: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field title: %w", err)
tl_page_related_article_gen.go#L388: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field description: %w", err)
tl_page_related_article_gen.go#L395: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field photo_id: %w", err)
tl_page_related_article_gen.go#L402: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field author: %w", err)
tl_page_related_article_gen.go#L409: return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field published_date: %w", err)
tl_page_table_cell_gen.go#L213: return fmt.Errorf("can't encode pageTableCell#34566b6a as nil")
tl_page_table_cell_gen.go#L222: return fmt.Errorf("can't encode pageTableCell#34566b6a as nil")
tl_page_table_cell_gen.go#L249: return fmt.Errorf("unable to encode pageTableCell#34566b6a: field flags: %w", err)
tl_page_table_cell_gen.go#L253: return fmt.Errorf("unable to encode pageTableCell#34566b6a: field text is nil")
tl_page_table_cell_gen.go#L256: return fmt.Errorf("unable to encode pageTableCell#34566b6a: field text: %w", err)
tl_page_table_cell_gen.go#L396: return fmt.Errorf("can't decode pageTableCell#34566b6a to nil")
tl_page_table_cell_gen.go#L399: return fmt.Errorf("unable to decode pageTableCell#34566b6a: %w", err)
tl_page_table_cell_gen.go#L407: return fmt.Errorf("can't decode pageTableCell#34566b6a to nil")
tl_page_table_cell_gen.go#L411: return fmt.Errorf("unable to decode pageTableCell#34566b6a: field flags: %w", err)
tl_page_table_cell_gen.go#L422: return fmt.Errorf("unable to decode pageTableCell#34566b6a: field text: %w", err)
tl_page_table_cell_gen.go#L429: return fmt.Errorf("unable to decode pageTableCell#34566b6a: field colspan: %w", err)
tl_page_table_cell_gen.go#L436: return fmt.Errorf("unable to decode pageTableCell#34566b6a: field rowspan: %w", err)
tl_page_table_row_gen.go#L105: return fmt.Errorf("can't encode pageTableRow#e0c0c5e5 as nil")
tl_page_table_row_gen.go#L114: return fmt.Errorf("can't encode pageTableRow#e0c0c5e5 as nil")
tl_page_table_row_gen.go#L119: return fmt.Errorf("unable to encode pageTableRow#e0c0c5e5: field cells element with index %d: %w", idx, err)
tl_page_table_row_gen.go#L133: return fmt.Errorf("can't decode pageTableRow#e0c0c5e5 to nil")
tl_page_table_row_gen.go#L136: return fmt.Errorf("unable to decode pageTableRow#e0c0c5e5: %w", err)
tl_page_table_row_gen.go#L144: return fmt.Errorf("can't decode pageTableRow#e0c0c5e5 to nil")
tl_page_table_row_gen.go#L149: return fmt.Errorf("unable to decode pageTableRow#e0c0c5e5: field cells: %w", err)
tl_page_table_row_gen.go#L154: return fmt.Errorf("unable to decode pageTableRow#e0c0c5e5: field cells: %w", err)
tl_password_kdf_algo_gen.go#L89: return fmt.Errorf("can't encode passwordKdfAlgoUnknown#d45ab096 as nil")
tl_password_kdf_algo_gen.go#L98: return fmt.Errorf("can't encode passwordKdfAlgoUnknown#d45ab096 as nil")
tl_password_kdf_algo_gen.go#L106: return fmt.Errorf("can't decode passwordKdfAlgoUnknown#d45ab096 to nil")
tl_password_kdf_algo_gen.go#L109: return fmt.Errorf("unable to decode passwordKdfAlgoUnknown#d45ab096: %w", err)
tl_password_kdf_algo_gen.go#L117: return fmt.Errorf("can't decode passwordKdfAlgoUnknown#d45ab096 to nil")
tl_password_kdf_algo_gen.go#L256: return fmt.Errorf("can't encode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a as nil")
tl_password_kdf_algo_gen.go#L265: return fmt.Errorf("can't encode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a as nil")
tl_password_kdf_algo_gen.go#L297: return fmt.Errorf("can't decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a to nil")
tl_password_kdf_algo_gen.go#L300: return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: %w", err)
tl_password_kdf_algo_gen.go#L308: return fmt.Errorf("can't decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a to nil")
tl_password_kdf_algo_gen.go#L313: return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: field salt1: %w", err)
tl_password_kdf_algo_gen.go#L320: return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: field salt2: %w", err)
tl_password_kdf_algo_gen.go#L327: return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: field g: %w", err)
tl_password_kdf_algo_gen.go#L334: return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: field p: %w", err)
tl_password_kdf_algo_gen.go#L400: return nil, fmt.Errorf("unable to decode PasswordKdfAlgoClass: %w", err)
tl_password_kdf_algo_gen.go#L407: return nil, fmt.Errorf("unable to decode PasswordKdfAlgoClass: %w", err)
tl_password_kdf_algo_gen.go#L411: return nil, fmt.Errorf("unable to decode PasswordKdfAlgoClass: %w", bin.NewUnexpectedID(id))
tl_password_kdf_algo_gen.go#L423: return fmt.Errorf("unable to decode PasswordKdfAlgoBox to nil")
tl_password_kdf_algo_gen.go#L427: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_password_kdf_algo_gen.go#L436: return fmt.Errorf("unable to encode PasswordKdfAlgoClass as nil")
tl_payment_charge_gen.go#L116: return fmt.Errorf("can't encode paymentCharge#ea02c27e as nil")
tl_payment_charge_gen.go#L125: return fmt.Errorf("can't encode paymentCharge#ea02c27e as nil")
tl_payment_charge_gen.go#L145: return fmt.Errorf("can't decode paymentCharge#ea02c27e to nil")
tl_payment_charge_gen.go#L148: return fmt.Errorf("unable to decode paymentCharge#ea02c27e: %w", err)
tl_payment_charge_gen.go#L156: return fmt.Errorf("can't decode paymentCharge#ea02c27e to nil")
tl_payment_charge_gen.go#L161: return fmt.Errorf("unable to decode paymentCharge#ea02c27e: field id: %w", err)
tl_payment_charge_gen.go#L168: return fmt.Errorf("unable to decode paymentCharge#ea02c27e: field provider_charge_id: %w", err)
tl_payment_requested_info_gen.go#L170: return fmt.Errorf("can't encode paymentRequestedInfo#909c3f94 as nil")
tl_payment_requested_info_gen.go#L179: return fmt.Errorf("can't encode paymentRequestedInfo#909c3f94 as nil")
tl_payment_requested_info_gen.go#L194: return fmt.Errorf("unable to encode paymentRequestedInfo#909c3f94: field flags: %w", err)
tl_payment_requested_info_gen.go#L207: return fmt.Errorf("unable to encode paymentRequestedInfo#909c3f94: field shipping_address: %w", err)
tl_payment_requested_info_gen.go#L276: return fmt.Errorf("can't decode paymentRequestedInfo#909c3f94 to nil")
tl_payment_requested_info_gen.go#L279: return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: %w", err)
tl_payment_requested_info_gen.go#L287: return fmt.Errorf("can't decode paymentRequestedInfo#909c3f94 to nil")
tl_payment_requested_info_gen.go#L291: return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field flags: %w", err)
tl_payment_requested_info_gen.go#L297: return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field name: %w", err)
tl_payment_requested_info_gen.go#L304: return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field phone: %w", err)
tl_payment_requested_info_gen.go#L311: return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field email: %w", err)
tl_payment_requested_info_gen.go#L317: return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field shipping_address: %w", err)
tl_payment_saved_credentials_card_gen.go#L116: return fmt.Errorf("can't encode paymentSavedCredentialsCard#cdc27a1f as nil")
tl_payment_saved_credentials_card_gen.go#L125: return fmt.Errorf("can't encode paymentSavedCredentialsCard#cdc27a1f as nil")
tl_payment_saved_credentials_card_gen.go#L145: return fmt.Errorf("can't decode paymentSavedCredentialsCard#cdc27a1f to nil")
tl_payment_saved_credentials_card_gen.go#L148: return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: %w", err)
tl_payment_saved_credentials_card_gen.go#L156: return fmt.Errorf("can't decode paymentSavedCredentialsCard#cdc27a1f to nil")
tl_payment_saved_credentials_card_gen.go#L161: return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: field id: %w", err)
tl_payment_saved_credentials_card_gen.go#L168: return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: field title: %w", err)
tl_payments_bank_card_data_gen.go#L116: return fmt.Errorf("can't encode payments.bankCardData#3e24e573 as nil")
tl_payments_bank_card_data_gen.go#L125: return fmt.Errorf("can't encode payments.bankCardData#3e24e573 as nil")
tl_payments_bank_card_data_gen.go#L131: return fmt.Errorf("unable to encode payments.bankCardData#3e24e573: field open_urls element with index %d: %w", idx, err)
tl_payments_bank_card_data_gen.go#L150: return fmt.Errorf("can't decode payments.bankCardData#3e24e573 to nil")
tl_payments_bank_card_data_gen.go#L153: return fmt.Errorf("unable to decode payments.bankCardData#3e24e573: %w", err)
tl_payments_bank_card_data_gen.go#L161: return fmt.Errorf("can't decode payments.bankCardData#3e24e573 to nil")
tl_payments_bank_card_data_gen.go#L166: return fmt.Errorf("unable to decode payments.bankCardData#3e24e573: field title: %w", err)
tl_payments_bank_card_data_gen.go#L173: return fmt.Errorf("unable to decode payments.bankCardData#3e24e573: field open_urls: %w", err)
tl_payments_bank_card_data_gen.go#L178: return fmt.Errorf("unable to decode payments.bankCardData#3e24e573: field open_urls: %w", err)
tl_payments_clear_saved_info_gen.go#L126: return fmt.Errorf("can't encode payments.clearSavedInfo#d83d70c1 as nil")
tl_payments_clear_saved_info_gen.go#L135: return fmt.Errorf("can't encode payments.clearSavedInfo#d83d70c1 as nil")
tl_payments_clear_saved_info_gen.go#L144: return fmt.Errorf("unable to encode payments.clearSavedInfo#d83d70c1: field flags: %w", err)
tl_payments_clear_saved_info_gen.go#L184: return fmt.Errorf("can't decode payments.clearSavedInfo#d83d70c1 to nil")
tl_payments_clear_saved_info_gen.go#L187: return fmt.Errorf("unable to decode payments.clearSavedInfo#d83d70c1: %w", err)
tl_payments_clear_saved_info_gen.go#L195: return fmt.Errorf("can't decode payments.clearSavedInfo#d83d70c1 to nil")
tl_payments_clear_saved_info_gen.go#L199: return fmt.Errorf("unable to decode payments.clearSavedInfo#d83d70c1: field flags: %w", err)
tl_payments_get_bank_card_data_gen.go#L105: return fmt.Errorf("can't encode payments.getBankCardData#2e79d779 as nil")
tl_payments_get_bank_card_data_gen.go#L114: return fmt.Errorf("can't encode payments.getBankCardData#2e79d779 as nil")
tl_payments_get_bank_card_data_gen.go#L128: return fmt.Errorf("can't decode payments.getBankCardData#2e79d779 to nil")
tl_payments_get_bank_card_data_gen.go#L131: return fmt.Errorf("unable to decode payments.getBankCardData#2e79d779: %w", err)
tl_payments_get_bank_card_data_gen.go#L139: return fmt.Errorf("can't decode payments.getBankCardData#2e79d779 to nil")
tl_payments_get_bank_card_data_gen.go#L144: return fmt.Errorf("unable to decode payments.getBankCardData#2e79d779: field number: %w", err)
tl_payments_get_payment_form_gen.go#L138: return fmt.Errorf("can't encode payments.getPaymentForm#8a333c8d as nil")
tl_payments_get_payment_form_gen.go#L147: return fmt.Errorf("can't encode payments.getPaymentForm#8a333c8d as nil")
tl_payments_get_payment_form_gen.go#L153: return fmt.Errorf("unable to encode payments.getPaymentForm#8a333c8d: field flags: %w", err)
tl_payments_get_payment_form_gen.go#L156: return fmt.Errorf("unable to encode payments.getPaymentForm#8a333c8d: field peer is nil")
tl_payments_get_payment_form_gen.go#L159: return fmt.Errorf("unable to encode payments.getPaymentForm#8a333c8d: field peer: %w", err)
tl_payments_get_payment_form_gen.go#L164: return fmt.Errorf("unable to encode payments.getPaymentForm#8a333c8d: field theme_params: %w", err)
tl_payments_get_payment_form_gen.go#L198: return fmt.Errorf("can't decode payments.getPaymentForm#8a333c8d to nil")
tl_payments_get_payment_form_gen.go#L201: return fmt.Errorf("unable to decode payments.getPaymentForm#8a333c8d: %w", err)
tl_payments_get_payment_form_gen.go#L209: return fmt.Errorf("can't decode payments.getPaymentForm#8a333c8d to nil")
tl_payments_get_payment_form_gen.go#L213: return fmt.Errorf("unable to decode payments.getPaymentForm#8a333c8d: field flags: %w", err)
tl_payments_get_payment_form_gen.go#L219: return fmt.Errorf("unable to decode payments.getPaymentForm#8a333c8d: field peer: %w", err)
tl_payments_get_payment_form_gen.go#L226: return fmt.Errorf("unable to decode payments.getPaymentForm#8a333c8d: field msg_id: %w", err)
tl_payments_get_payment_form_gen.go#L232: return fmt.Errorf("unable to decode payments.getPaymentForm#8a333c8d: field theme_params: %w", err)
tl_payments_get_payment_receipt_gen.go#L116: return fmt.Errorf("can't encode payments.getPaymentReceipt#2478d1cc as nil")
tl_payments_get_payment_receipt_gen.go#L125: return fmt.Errorf("can't encode payments.getPaymentReceipt#2478d1cc as nil")
tl_payments_get_payment_receipt_gen.go#L128: return fmt.Errorf("unable to encode payments.getPaymentReceipt#2478d1cc: field peer is nil")
tl_payments_get_payment_receipt_gen.go#L131: return fmt.Errorf("unable to encode payments.getPaymentReceipt#2478d1cc: field peer: %w", err)
tl_payments_get_payment_receipt_gen.go#L150: return fmt.Errorf("can't decode payments.getPaymentReceipt#2478d1cc to nil")
tl_payments_get_payment_receipt_gen.go#L153: return fmt.Errorf("unable to decode payments.getPaymentReceipt#2478d1cc: %w", err)
tl_payments_get_payment_receipt_gen.go#L161: return fmt.Errorf("can't decode payments.getPaymentReceipt#2478d1cc to nil")
tl_payments_get_payment_receipt_gen.go#L166: return fmt.Errorf("unable to decode payments.getPaymentReceipt#2478d1cc: field peer: %w", err)
tl_payments_get_payment_receipt_gen.go#L173: return fmt.Errorf("unable to decode payments.getPaymentReceipt#2478d1cc: field msg_id: %w", err)
tl_payments_get_saved_info_gen.go#L88: return fmt.Errorf("can't encode payments.getSavedInfo#227d824b as nil")
tl_payments_get_saved_info_gen.go#L97: return fmt.Errorf("can't encode payments.getSavedInfo#227d824b as nil")
tl_payments_get_saved_info_gen.go#L105: return fmt.Errorf("can't decode payments.getSavedInfo#227d824b to nil")
tl_payments_get_saved_info_gen.go#L108: return fmt.Errorf("unable to decode payments.getSavedInfo#227d824b: %w", err)
tl_payments_get_saved_info_gen.go#L116: return fmt.Errorf("can't decode payments.getSavedInfo#227d824b to nil")
tl_payments_payment_form_gen.go#L272: return fmt.Errorf("can't encode payments.paymentForm#8d0b2415 as nil")
tl_payments_payment_form_gen.go#L281: return fmt.Errorf("can't encode payments.paymentForm#8d0b2415 as nil")
tl_payments_payment_form_gen.go#L302: return fmt.Errorf("unable to encode payments.paymentForm#8d0b2415: field flags: %w", err)
tl_payments_payment_form_gen.go#L307: return fmt.Errorf("unable to encode payments.paymentForm#8d0b2415: field invoice: %w", err)
tl_payments_payment_form_gen.go#L316: return fmt.Errorf("unable to encode payments.paymentForm#8d0b2415: field native_params: %w", err)
tl_payments_payment_form_gen.go#L321: return fmt.Errorf("unable to encode payments.paymentForm#8d0b2415: field saved_info: %w", err)
tl_payments_payment_form_gen.go#L326: return fmt.Errorf("unable to encode payments.paymentForm#8d0b2415: field saved_credentials: %w", err)
tl_payments_payment_form_gen.go#L332: return fmt.Errorf("unable to encode payments.paymentForm#8d0b2415: field users element with index %d is nil", idx)
tl_payments_payment_form_gen.go#L335: return fmt.Errorf("unable to encode payments.paymentForm#8d0b2415: field users element with index %d: %w", idx, err)
tl_payments_payment_form_gen.go#L471: return fmt.Errorf("can't decode payments.paymentForm#8d0b2415 to nil")
tl_payments_payment_form_gen.go#L474: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: %w", err)
tl_payments_payment_form_gen.go#L482: return fmt.Errorf("can't decode payments.paymentForm#8d0b2415 to nil")
tl_payments_payment_form_gen.go#L486: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field flags: %w", err)
tl_payments_payment_form_gen.go#L494: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field form_id: %w", err)
tl_payments_payment_form_gen.go#L501: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field bot_id: %w", err)
tl_payments_payment_form_gen.go#L507: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field invoice: %w", err)
tl_payments_payment_form_gen.go#L513: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field provider_id: %w", err)
tl_payments_payment_form_gen.go#L520: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field url: %w", err)
tl_payments_payment_form_gen.go#L527: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field native_provider: %w", err)
tl_payments_payment_form_gen.go#L533: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field native_params: %w", err)
tl_payments_payment_form_gen.go#L538: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field saved_info: %w", err)
tl_payments_payment_form_gen.go#L543: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field saved_credentials: %w", err)
tl_payments_payment_form_gen.go#L549: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field users: %w", err)
tl_payments_payment_form_gen.go#L554: return fmt.Errorf("unable to decode payments.paymentForm#8d0b2415: field users: %w", err)
tl_payments_payment_receipt_gen.go#L289: return fmt.Errorf("can't encode payments.paymentReceipt#10b555d0 as nil")
tl_payments_payment_receipt_gen.go#L298: return fmt.Errorf("can't encode payments.paymentReceipt#10b555d0 as nil")
tl_payments_payment_receipt_gen.go#L313: return fmt.Errorf("unable to encode payments.paymentReceipt#10b555d0: field flags: %w", err)
tl_payments_payment_receipt_gen.go#L322: return fmt.Errorf("unable to encode payments.paymentReceipt#10b555d0: field photo is nil")
tl_payments_payment_receipt_gen.go#L325: return fmt.Errorf("unable to encode payments.paymentReceipt#10b555d0: field photo: %w", err)
tl_payments_payment_receipt_gen.go#L329: return fmt.Errorf("unable to encode payments.paymentReceipt#10b555d0: field invoice: %w", err)
tl_payments_payment_receipt_gen.go#L333: return fmt.Errorf("unable to encode payments.paymentReceipt#10b555d0: field info: %w", err)
tl_payments_payment_receipt_gen.go#L338: return fmt.Errorf("unable to encode payments.paymentReceipt#10b555d0: field shipping: %w", err)
tl_payments_payment_receipt_gen.go#L350: return fmt.Errorf("unable to encode payments.paymentReceipt#10b555d0: field users element with index %d is nil", idx)
tl_payments_payment_receipt_gen.go#L353: return fmt.Errorf("unable to encode payments.paymentReceipt#10b555d0: field users element with index %d: %w", idx, err)
tl_payments_payment_receipt_gen.go#L477: return fmt.Errorf("can't decode payments.paymentReceipt#10b555d0 to nil")
tl_payments_payment_receipt_gen.go#L480: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: %w", err)
tl_payments_payment_receipt_gen.go#L488: return fmt.Errorf("can't decode payments.paymentReceipt#10b555d0 to nil")
tl_payments_payment_receipt_gen.go#L492: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field flags: %w", err)
tl_payments_payment_receipt_gen.go#L498: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field date: %w", err)
tl_payments_payment_receipt_gen.go#L505: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field bot_id: %w", err)
tl_payments_payment_receipt_gen.go#L512: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field provider_id: %w", err)
tl_payments_payment_receipt_gen.go#L519: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field title: %w", err)
tl_payments_payment_receipt_gen.go#L526: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field description: %w", err)
tl_payments_payment_receipt_gen.go#L533: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field photo: %w", err)
tl_payments_payment_receipt_gen.go#L539: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field invoice: %w", err)
tl_payments_payment_receipt_gen.go#L544: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field info: %w", err)
tl_payments_payment_receipt_gen.go#L549: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field shipping: %w", err)
tl_payments_payment_receipt_gen.go#L555: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field tip_amount: %w", err)
tl_payments_payment_receipt_gen.go#L562: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field currency: %w", err)
tl_payments_payment_receipt_gen.go#L569: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field total_amount: %w", err)
tl_payments_payment_receipt_gen.go#L576: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field credentials_title: %w", err)
tl_payments_payment_receipt_gen.go#L583: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field users: %w", err)
tl_payments_payment_receipt_gen.go#L588: return fmt.Errorf("unable to decode payments.paymentReceipt#10b555d0: field users: %w", err)
tl_payments_payment_result_gen.go#L105: return fmt.Errorf("can't encode payments.paymentResult#4e5f810d as nil")
tl_payments_payment_result_gen.go#L114: return fmt.Errorf("can't encode payments.paymentResult#4e5f810d as nil")
tl_payments_payment_result_gen.go#L117: return fmt.Errorf("unable to encode payments.paymentResult#4e5f810d: field updates is nil")
tl_payments_payment_result_gen.go#L120: return fmt.Errorf("unable to encode payments.paymentResult#4e5f810d: field updates: %w", err)
tl_payments_payment_result_gen.go#L133: return fmt.Errorf("can't decode payments.paymentResult#4e5f810d to nil")
tl_payments_payment_result_gen.go#L136: return fmt.Errorf("unable to decode payments.paymentResult#4e5f810d: %w", err)
tl_payments_payment_result_gen.go#L144: return fmt.Errorf("can't decode payments.paymentResult#4e5f810d to nil")
tl_payments_payment_result_gen.go#L149: return fmt.Errorf("unable to decode payments.paymentResult#4e5f810d: field updates: %w", err)
tl_payments_payment_result_gen.go#L242: return fmt.Errorf("can't encode payments.paymentVerificationNeeded#d8411139 as nil")
tl_payments_payment_result_gen.go#L251: return fmt.Errorf("can't encode payments.paymentVerificationNeeded#d8411139 as nil")
tl_payments_payment_result_gen.go#L265: return fmt.Errorf("can't decode payments.paymentVerificationNeeded#d8411139 to nil")
tl_payments_payment_result_gen.go#L268: return fmt.Errorf("unable to decode payments.paymentVerificationNeeded#d8411139: %w", err)
tl_payments_payment_result_gen.go#L276: return fmt.Errorf("can't decode payments.paymentVerificationNeeded#d8411139 to nil")
tl_payments_payment_result_gen.go#L281: return fmt.Errorf("unable to decode payments.paymentVerificationNeeded#d8411139: field url: %w", err)
tl_payments_payment_result_gen.go#L345: return nil, fmt.Errorf("unable to decode PaymentsPaymentResultClass: %w", err)
tl_payments_payment_result_gen.go#L352: return nil, fmt.Errorf("unable to decode PaymentsPaymentResultClass: %w", err)
tl_payments_payment_result_gen.go#L356: return nil, fmt.Errorf("unable to decode PaymentsPaymentResultClass: %w", bin.NewUnexpectedID(id))
tl_payments_payment_result_gen.go#L368: return fmt.Errorf("unable to decode PaymentsPaymentResultBox to nil")
tl_payments_payment_result_gen.go#L372: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_payments_payment_result_gen.go#L381: return fmt.Errorf("unable to encode PaymentsPaymentResultClass as nil")
tl_payments_saved_info_gen.go#L131: return fmt.Errorf("can't encode payments.savedInfo#fb8fe43c as nil")
tl_payments_saved_info_gen.go#L140: return fmt.Errorf("can't encode payments.savedInfo#fb8fe43c as nil")
tl_payments_saved_info_gen.go#L149: return fmt.Errorf("unable to encode payments.savedInfo#fb8fe43c: field flags: %w", err)
tl_payments_saved_info_gen.go#L153: return fmt.Errorf("unable to encode payments.savedInfo#fb8fe43c: field saved_info: %w", err)
tl_payments_saved_info_gen.go#L193: return fmt.Errorf("can't decode payments.savedInfo#fb8fe43c to nil")
tl_payments_saved_info_gen.go#L196: return fmt.Errorf("unable to decode payments.savedInfo#fb8fe43c: %w", err)
tl_payments_saved_info_gen.go#L204: return fmt.Errorf("can't decode payments.savedInfo#fb8fe43c to nil")
tl_payments_saved_info_gen.go#L208: return fmt.Errorf("unable to decode payments.savedInfo#fb8fe43c: field flags: %w", err)
tl_payments_saved_info_gen.go#L214: return fmt.Errorf("unable to decode payments.savedInfo#fb8fe43c: field saved_info: %w", err)
tl_payments_send_payment_form_gen.go#L200: return fmt.Errorf("can't encode payments.sendPaymentForm#30c3bc9d as nil")
tl_payments_send_payment_form_gen.go#L209: return fmt.Errorf("can't encode payments.sendPaymentForm#30c3bc9d as nil")
tl_payments_send_payment_form_gen.go#L221: return fmt.Errorf("unable to encode payments.sendPaymentForm#30c3bc9d: field flags: %w", err)
tl_payments_send_payment_form_gen.go#L225: return fmt.Errorf("unable to encode payments.sendPaymentForm#30c3bc9d: field peer is nil")
tl_payments_send_payment_form_gen.go#L228: return fmt.Errorf("unable to encode payments.sendPaymentForm#30c3bc9d: field peer: %w", err)
tl_payments_send_payment_form_gen.go#L238: return fmt.Errorf("unable to encode payments.sendPaymentForm#30c3bc9d: field credentials is nil")
tl_payments_send_payment_form_gen.go#L241: return fmt.Errorf("unable to encode payments.sendPaymentForm#30c3bc9d: field credentials: %w", err)
tl_payments_send_payment_form_gen.go#L317: return fmt.Errorf("can't decode payments.sendPaymentForm#30c3bc9d to nil")
tl_payments_send_payment_form_gen.go#L320: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: %w", err)
tl_payments_send_payment_form_gen.go#L328: return fmt.Errorf("can't decode payments.sendPaymentForm#30c3bc9d to nil")
tl_payments_send_payment_form_gen.go#L332: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: field flags: %w", err)
tl_payments_send_payment_form_gen.go#L338: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: field form_id: %w", err)
tl_payments_send_payment_form_gen.go#L345: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: field peer: %w", err)
tl_payments_send_payment_form_gen.go#L352: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: field msg_id: %w", err)
tl_payments_send_payment_form_gen.go#L359: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: field requested_info_id: %w", err)
tl_payments_send_payment_form_gen.go#L366: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: field shipping_option_id: %w", err)
tl_payments_send_payment_form_gen.go#L373: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: field credentials: %w", err)
tl_payments_send_payment_form_gen.go#L380: return fmt.Errorf("unable to decode payments.sendPaymentForm#30c3bc9d: field tip_amount: %w", err)
tl_payments_validate_requested_info_gen.go#L147: return fmt.Errorf("can't encode payments.validateRequestedInfo#db103170 as nil")
tl_payments_validate_requested_info_gen.go#L156: return fmt.Errorf("can't encode payments.validateRequestedInfo#db103170 as nil")
tl_payments_validate_requested_info_gen.go#L162: return fmt.Errorf("unable to encode payments.validateRequestedInfo#db103170: field flags: %w", err)
tl_payments_validate_requested_info_gen.go#L165: return fmt.Errorf("unable to encode payments.validateRequestedInfo#db103170: field peer is nil")
tl_payments_validate_requested_info_gen.go#L168: return fmt.Errorf("unable to encode payments.validateRequestedInfo#db103170: field peer: %w", err)
tl_payments_validate_requested_info_gen.go#L172: return fmt.Errorf("unable to encode payments.validateRequestedInfo#db103170: field info: %w", err)
tl_payments_validate_requested_info_gen.go#L211: return fmt.Errorf("can't decode payments.validateRequestedInfo#db103170 to nil")
tl_payments_validate_requested_info_gen.go#L214: return fmt.Errorf("unable to decode payments.validateRequestedInfo#db103170: %w", err)
tl_payments_validate_requested_info_gen.go#L222: return fmt.Errorf("can't decode payments.validateRequestedInfo#db103170 to nil")
tl_payments_validate_requested_info_gen.go#L226: return fmt.Errorf("unable to decode payments.validateRequestedInfo#db103170: field flags: %w", err)
tl_payments_validate_requested_info_gen.go#L233: return fmt.Errorf("unable to decode payments.validateRequestedInfo#db103170: field peer: %w", err)
tl_payments_validate_requested_info_gen.go#L240: return fmt.Errorf("unable to decode payments.validateRequestedInfo#db103170: field msg_id: %w", err)
tl_payments_validate_requested_info_gen.go#L246: return fmt.Errorf("unable to decode payments.validateRequestedInfo#db103170: field info: %w", err)
tl_payments_validated_requested_info_gen.go#L132: return fmt.Errorf("can't encode payments.validatedRequestedInfo#d1451883 as nil")
tl_payments_validated_requested_info_gen.go#L141: return fmt.Errorf("can't encode payments.validatedRequestedInfo#d1451883 as nil")
tl_payments_validated_requested_info_gen.go#L150: return fmt.Errorf("unable to encode payments.validatedRequestedInfo#d1451883: field flags: %w", err)
tl_payments_validated_requested_info_gen.go#L159: return fmt.Errorf("unable to encode payments.validatedRequestedInfo#d1451883: field shipping_options element with index %d: %w", idx, err)
tl_payments_validated_requested_info_gen.go#L199: return fmt.Errorf("can't decode payments.validatedRequestedInfo#d1451883 to nil")
tl_payments_validated_requested_info_gen.go#L202: return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: %w", err)
tl_payments_validated_requested_info_gen.go#L210: return fmt.Errorf("can't decode payments.validatedRequestedInfo#d1451883 to nil")
tl_payments_validated_requested_info_gen.go#L214: return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: field flags: %w", err)
tl_payments_validated_requested_info_gen.go#L220: return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: field id: %w", err)
tl_payments_validated_requested_info_gen.go#L227: return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: field shipping_options: %w", err)
tl_payments_validated_requested_info_gen.go#L232: return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: field shipping_options: %w", err)
tl_peer_blocked_gen.go#L116: return fmt.Errorf("can't encode peerBlocked#e8fd8014 as nil")
tl_peer_blocked_gen.go#L125: return fmt.Errorf("can't encode peerBlocked#e8fd8014 as nil")
tl_peer_blocked_gen.go#L128: return fmt.Errorf("unable to encode peerBlocked#e8fd8014: field peer_id is nil")
tl_peer_blocked_gen.go#L131: return fmt.Errorf("unable to encode peerBlocked#e8fd8014: field peer_id: %w", err)
tl_peer_blocked_gen.go#L150: return fmt.Errorf("can't decode peerBlocked#e8fd8014 to nil")
tl_peer_blocked_gen.go#L153: return fmt.Errorf("unable to decode peerBlocked#e8fd8014: %w", err)
tl_peer_blocked_gen.go#L161: return fmt.Errorf("can't decode peerBlocked#e8fd8014 to nil")
tl_peer_blocked_gen.go#L166: return fmt.Errorf("unable to decode peerBlocked#e8fd8014: field peer_id: %w", err)
tl_peer_blocked_gen.go#L173: return fmt.Errorf("unable to decode peerBlocked#e8fd8014: field date: %w", err)
tl_peer_gen.go#L105: return fmt.Errorf("can't encode peerUser#9db1bc6d as nil")
tl_peer_gen.go#L114: return fmt.Errorf("can't encode peerUser#9db1bc6d as nil")
tl_peer_gen.go#L128: return fmt.Errorf("can't decode peerUser#9db1bc6d to nil")
tl_peer_gen.go#L131: return fmt.Errorf("unable to decode peerUser#9db1bc6d: %w", err)
tl_peer_gen.go#L139: return fmt.Errorf("can't decode peerUser#9db1bc6d to nil")
tl_peer_gen.go#L144: return fmt.Errorf("unable to decode peerUser#9db1bc6d: field user_id: %w", err)
tl_peer_gen.go#L237: return fmt.Errorf("can't encode peerChat#bad0e5bb as nil")
tl_peer_gen.go#L246: return fmt.Errorf("can't encode peerChat#bad0e5bb as nil")
tl_peer_gen.go#L260: return fmt.Errorf("can't decode peerChat#bad0e5bb to nil")
tl_peer_gen.go#L263: return fmt.Errorf("unable to decode peerChat#bad0e5bb: %w", err)
tl_peer_gen.go#L271: return fmt.Errorf("can't decode peerChat#bad0e5bb to nil")
tl_peer_gen.go#L276: return fmt.Errorf("unable to decode peerChat#bad0e5bb: field chat_id: %w", err)
tl_peer_gen.go#L369: return fmt.Errorf("can't encode peerChannel#bddde532 as nil")
tl_peer_gen.go#L378: return fmt.Errorf("can't encode peerChannel#bddde532 as nil")
tl_peer_gen.go#L392: return fmt.Errorf("can't decode peerChannel#bddde532 to nil")
tl_peer_gen.go#L395: return fmt.Errorf("unable to decode peerChannel#bddde532: %w", err)
tl_peer_gen.go#L403: return fmt.Errorf("can't decode peerChannel#bddde532 to nil")
tl_peer_gen.go#L408: return fmt.Errorf("unable to decode peerChannel#bddde532: field channel_id: %w", err)
tl_peer_gen.go#L481: return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
tl_peer_gen.go#L488: return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
tl_peer_gen.go#L495: return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
tl_peer_gen.go#L499: return nil, fmt.Errorf("unable to decode PeerClass: %w", bin.NewUnexpectedID(id))
tl_peer_gen.go#L511: return fmt.Errorf("unable to decode PeerBox to nil")
tl_peer_gen.go#L515: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_peer_gen.go#L524: return fmt.Errorf("unable to encode PeerClass as nil")
tl_peer_located_gen.go#L127: return fmt.Errorf("can't encode peerLocated#ca461b5d as nil")
tl_peer_located_gen.go#L136: return fmt.Errorf("can't encode peerLocated#ca461b5d as nil")
tl_peer_located_gen.go#L139: return fmt.Errorf("unable to encode peerLocated#ca461b5d: field peer is nil")
tl_peer_located_gen.go#L142: return fmt.Errorf("unable to encode peerLocated#ca461b5d: field peer: %w", err)
tl_peer_located_gen.go#L167: return fmt.Errorf("can't decode peerLocated#ca461b5d to nil")
tl_peer_located_gen.go#L170: return fmt.Errorf("unable to decode peerLocated#ca461b5d: %w", err)
tl_peer_located_gen.go#L178: return fmt.Errorf("can't decode peerLocated#ca461b5d to nil")
tl_peer_located_gen.go#L183: return fmt.Errorf("unable to decode peerLocated#ca461b5d: field peer: %w", err)
tl_peer_located_gen.go#L190: return fmt.Errorf("unable to decode peerLocated#ca461b5d: field expires: %w", err)
tl_peer_located_gen.go#L197: return fmt.Errorf("unable to decode peerLocated#ca461b5d: field distance: %w", err)
tl_peer_located_gen.go#L290: return fmt.Errorf("can't encode peerSelfLocated#f8ec284b as nil")
tl_peer_located_gen.go#L299: return fmt.Errorf("can't encode peerSelfLocated#f8ec284b as nil")
tl_peer_located_gen.go#L313: return fmt.Errorf("can't decode peerSelfLocated#f8ec284b to nil")
tl_peer_located_gen.go#L316: return fmt.Errorf("unable to decode peerSelfLocated#f8ec284b: %w", err)
tl_peer_located_gen.go#L324: return fmt.Errorf("can't decode peerSelfLocated#f8ec284b to nil")
tl_peer_located_gen.go#L329: return fmt.Errorf("unable to decode peerSelfLocated#f8ec284b: field expires: %w", err)
tl_peer_located_gen.go#L396: return nil, fmt.Errorf("unable to decode PeerLocatedClass: %w", err)
tl_peer_located_gen.go#L403: return nil, fmt.Errorf("unable to decode PeerLocatedClass: %w", err)
tl_peer_located_gen.go#L407: return nil, fmt.Errorf("unable to decode PeerLocatedClass: %w", bin.NewUnexpectedID(id))
tl_peer_located_gen.go#L419: return fmt.Errorf("unable to decode PeerLocatedBox to nil")
tl_peer_located_gen.go#L423: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_peer_located_gen.go#L432: return fmt.Errorf("unable to encode PeerLocatedClass as nil")
tl_peer_notify_settings_gen.go#L170: return fmt.Errorf("can't encode peerNotifySettings#af509d20 as nil")
tl_peer_notify_settings_gen.go#L179: return fmt.Errorf("can't encode peerNotifySettings#af509d20 as nil")
tl_peer_notify_settings_gen.go#L194: return fmt.Errorf("unable to encode peerNotifySettings#af509d20: field flags: %w", err)
tl_peer_notify_settings_gen.go#L274: return fmt.Errorf("can't decode peerNotifySettings#af509d20 to nil")
tl_peer_notify_settings_gen.go#L277: return fmt.Errorf("unable to decode peerNotifySettings#af509d20: %w", err)
tl_peer_notify_settings_gen.go#L285: return fmt.Errorf("can't decode peerNotifySettings#af509d20 to nil")
tl_peer_notify_settings_gen.go#L289: return fmt.Errorf("unable to decode peerNotifySettings#af509d20: field flags: %w", err)
tl_peer_notify_settings_gen.go#L295: return fmt.Errorf("unable to decode peerNotifySettings#af509d20: field show_previews: %w", err)
tl_peer_notify_settings_gen.go#L302: return fmt.Errorf("unable to decode peerNotifySettings#af509d20: field silent: %w", err)
tl_peer_notify_settings_gen.go#L309: return fmt.Errorf("unable to decode peerNotifySettings#af509d20: field mute_until: %w", err)
tl_peer_notify_settings_gen.go#L316: return fmt.Errorf("unable to decode peerNotifySettings#af509d20: field sound: %w", err)
tl_peer_settings_gen.go#L218: return fmt.Errorf("can't encode peerSettings#733f2961 as nil")
tl_peer_settings_gen.go#L227: return fmt.Errorf("can't encode peerSettings#733f2961 as nil")
tl_peer_settings_gen.go#L257: return fmt.Errorf("unable to encode peerSettings#733f2961: field flags: %w", err)
tl_peer_settings_gen.go#L411: return fmt.Errorf("can't decode peerSettings#733f2961 to nil")
tl_peer_settings_gen.go#L414: return fmt.Errorf("unable to decode peerSettings#733f2961: %w", err)
tl_peer_settings_gen.go#L422: return fmt.Errorf("can't decode peerSettings#733f2961 to nil")
tl_peer_settings_gen.go#L426: return fmt.Errorf("unable to decode peerSettings#733f2961: field flags: %w", err)
tl_peer_settings_gen.go#L440: return fmt.Errorf("unable to decode peerSettings#733f2961: field geo_distance: %w", err)
tl_phone_accept_call_gen.go#L130: return fmt.Errorf("can't encode phone.acceptCall#3bd2b4a0 as nil")
tl_phone_accept_call_gen.go#L139: return fmt.Errorf("can't encode phone.acceptCall#3bd2b4a0 as nil")
tl_phone_accept_call_gen.go#L142: return fmt.Errorf("unable to encode phone.acceptCall#3bd2b4a0: field peer: %w", err)
tl_phone_accept_call_gen.go#L146: return fmt.Errorf("unable to encode phone.acceptCall#3bd2b4a0: field protocol: %w", err)
tl_phone_accept_call_gen.go#L169: return fmt.Errorf("can't decode phone.acceptCall#3bd2b4a0 to nil")
tl_phone_accept_call_gen.go#L172: return fmt.Errorf("unable to decode phone.acceptCall#3bd2b4a0: %w", err)
tl_phone_accept_call_gen.go#L180: return fmt.Errorf("can't decode phone.acceptCall#3bd2b4a0 to nil")
tl_phone_accept_call_gen.go#L184: return fmt.Errorf("unable to decode phone.acceptCall#3bd2b4a0: field peer: %w", err)
tl_phone_accept_call_gen.go#L190: return fmt.Errorf("unable to decode phone.acceptCall#3bd2b4a0: field g_b: %w", err)
tl_phone_accept_call_gen.go#L196: return fmt.Errorf("unable to decode phone.acceptCall#3bd2b4a0: field protocol: %w", err)
tl_phone_call_discard_reason_gen.go#L88: return fmt.Errorf("can't encode phoneCallDiscardReasonMissed#85e42301 as nil")
tl_phone_call_discard_reason_gen.go#L97: return fmt.Errorf("can't encode phoneCallDiscardReasonMissed#85e42301 as nil")
tl_phone_call_discard_reason_gen.go#L105: return fmt.Errorf("can't decode phoneCallDiscardReasonMissed#85e42301 to nil")
tl_phone_call_discard_reason_gen.go#L108: return fmt.Errorf("unable to decode phoneCallDiscardReasonMissed#85e42301: %w", err)
tl_phone_call_discard_reason_gen.go#L116: return fmt.Errorf("can't decode phoneCallDiscardReasonMissed#85e42301 to nil")
tl_phone_call_discard_reason_gen.go#L190: return fmt.Errorf("can't encode phoneCallDiscardReasonDisconnect#e095c1a0 as nil")
tl_phone_call_discard_reason_gen.go#L199: return fmt.Errorf("can't encode phoneCallDiscardReasonDisconnect#e095c1a0 as nil")
tl_phone_call_discard_reason_gen.go#L207: return fmt.Errorf("can't decode phoneCallDiscardReasonDisconnect#e095c1a0 to nil")
tl_phone_call_discard_reason_gen.go#L210: return fmt.Errorf("unable to decode phoneCallDiscardReasonDisconnect#e095c1a0: %w", err)
tl_phone_call_discard_reason_gen.go#L218: return fmt.Errorf("can't decode phoneCallDiscardReasonDisconnect#e095c1a0 to nil")
tl_phone_call_discard_reason_gen.go#L292: return fmt.Errorf("can't encode phoneCallDiscardReasonHangup#57adc690 as nil")
tl_phone_call_discard_reason_gen.go#L301: return fmt.Errorf("can't encode phoneCallDiscardReasonHangup#57adc690 as nil")
tl_phone_call_discard_reason_gen.go#L309: return fmt.Errorf("can't decode phoneCallDiscardReasonHangup#57adc690 to nil")
tl_phone_call_discard_reason_gen.go#L312: return fmt.Errorf("unable to decode phoneCallDiscardReasonHangup#57adc690: %w", err)
tl_phone_call_discard_reason_gen.go#L320: return fmt.Errorf("can't decode phoneCallDiscardReasonHangup#57adc690 to nil")
tl_phone_call_discard_reason_gen.go#L394: return fmt.Errorf("can't encode phoneCallDiscardReasonBusy#faf7e8c9 as nil")
tl_phone_call_discard_reason_gen.go#L403: return fmt.Errorf("can't encode phoneCallDiscardReasonBusy#faf7e8c9 as nil")
tl_phone_call_discard_reason_gen.go#L411: return fmt.Errorf("can't decode phoneCallDiscardReasonBusy#faf7e8c9 to nil")
tl_phone_call_discard_reason_gen.go#L414: return fmt.Errorf("unable to decode phoneCallDiscardReasonBusy#faf7e8c9: %w", err)
tl_phone_call_discard_reason_gen.go#L422: return fmt.Errorf("can't decode phoneCallDiscardReasonBusy#faf7e8c9 to nil")
tl_phone_call_discard_reason_gen.go#L486: return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", err)
tl_phone_call_discard_reason_gen.go#L493: return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", err)
tl_phone_call_discard_reason_gen.go#L500: return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", err)
tl_phone_call_discard_reason_gen.go#L507: return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", err)
tl_phone_call_discard_reason_gen.go#L511: return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", bin.NewUnexpectedID(id))
tl_phone_call_discard_reason_gen.go#L523: return fmt.Errorf("unable to decode PhoneCallDiscardReasonBox to nil")
tl_phone_call_discard_reason_gen.go#L527: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_phone_call_discard_reason_gen.go#L536: return fmt.Errorf("unable to encode PhoneCallDiscardReasonClass as nil")
tl_phone_call_gen.go#L105: return fmt.Errorf("can't encode phoneCallEmpty#5366c915 as nil")
tl_phone_call_gen.go#L114: return fmt.Errorf("can't encode phoneCallEmpty#5366c915 as nil")
tl_phone_call_gen.go#L128: return fmt.Errorf("can't decode phoneCallEmpty#5366c915 to nil")
tl_phone_call_gen.go#L131: return fmt.Errorf("unable to decode phoneCallEmpty#5366c915: %w", err)
tl_phone_call_gen.go#L139: return fmt.Errorf("can't decode phoneCallEmpty#5366c915 to nil")
tl_phone_call_gen.go#L144: return fmt.Errorf("unable to decode phoneCallEmpty#5366c915: field id: %w", err)
tl_phone_call_gen.go#L329: return fmt.Errorf("can't encode phoneCallWaiting#1b8f4ad1 as nil")
tl_phone_call_gen.go#L338: return fmt.Errorf("can't encode phoneCallWaiting#1b8f4ad1 as nil")
tl_phone_call_gen.go#L347: return fmt.Errorf("unable to encode phoneCallWaiting#1b8f4ad1: field flags: %w", err)
tl_phone_call_gen.go#L355: return fmt.Errorf("unable to encode phoneCallWaiting#1b8f4ad1: field protocol: %w", err)
tl_phone_call_gen.go#L427: return fmt.Errorf("can't decode phoneCallWaiting#1b8f4ad1 to nil")
tl_phone_call_gen.go#L430: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: %w", err)
tl_phone_call_gen.go#L438: return fmt.Errorf("can't decode phoneCallWaiting#1b8f4ad1 to nil")
tl_phone_call_gen.go#L442: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: field flags: %w", err)
tl_phone_call_gen.go#L449: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: field id: %w", err)
tl_phone_call_gen.go#L456: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: field access_hash: %w", err)
tl_phone_call_gen.go#L463: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: field date: %w", err)
tl_phone_call_gen.go#L470: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: field admin_id: %w", err)
tl_phone_call_gen.go#L477: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: field participant_id: %w", err)
tl_phone_call_gen.go#L483: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: field protocol: %w", err)
tl_phone_call_gen.go#L489: return fmt.Errorf("unable to decode phoneCallWaiting#1b8f4ad1: field receive_date: %w", err)
tl_phone_call_gen.go#L671: return fmt.Errorf("can't encode phoneCallRequested#87eabb53 as nil")
tl_phone_call_gen.go#L680: return fmt.Errorf("can't encode phoneCallRequested#87eabb53 as nil")
tl_phone_call_gen.go#L686: return fmt.Errorf("unable to encode phoneCallRequested#87eabb53: field flags: %w", err)
tl_phone_call_gen.go#L695: return fmt.Errorf("unable to encode phoneCallRequested#87eabb53: field protocol: %w", err)
tl_phone_call_gen.go#L754: return fmt.Errorf("can't decode phoneCallRequested#87eabb53 to nil")
tl_phone_call_gen.go#L757: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: %w", err)
tl_phone_call_gen.go#L765: return fmt.Errorf("can't decode phoneCallRequested#87eabb53 to nil")
tl_phone_call_gen.go#L769: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: field flags: %w", err)
tl_phone_call_gen.go#L776: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: field id: %w", err)
tl_phone_call_gen.go#L783: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: field access_hash: %w", err)
tl_phone_call_gen.go#L790: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: field date: %w", err)
tl_phone_call_gen.go#L797: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: field admin_id: %w", err)
tl_phone_call_gen.go#L804: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: field participant_id: %w", err)
tl_phone_call_gen.go#L811: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: field g_a_hash: %w", err)
tl_phone_call_gen.go#L817: return fmt.Errorf("unable to decode phoneCallRequested#87eabb53: field protocol: %w", err)
tl_phone_call_gen.go#L998: return fmt.Errorf("can't encode phoneCallAccepted#997c454a as nil")
tl_phone_call_gen.go#L1007: return fmt.Errorf("can't encode phoneCallAccepted#997c454a as nil")
tl_phone_call_gen.go#L1013: return fmt.Errorf("unable to encode phoneCallAccepted#997c454a: field flags: %w", err)
tl_phone_call_gen.go#L1022: return fmt.Errorf("unable to encode phoneCallAccepted#997c454a: field protocol: %w", err)
tl_phone_call_gen.go#L1081: return fmt.Errorf("can't decode phoneCallAccepted#997c454a to nil")
tl_phone_call_gen.go#L1084: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: %w", err)
tl_phone_call_gen.go#L1092: return fmt.Errorf("can't decode phoneCallAccepted#997c454a to nil")
tl_phone_call_gen.go#L1096: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: field flags: %w", err)
tl_phone_call_gen.go#L1103: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: field id: %w", err)
tl_phone_call_gen.go#L1110: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: field access_hash: %w", err)
tl_phone_call_gen.go#L1117: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: field date: %w", err)
tl_phone_call_gen.go#L1124: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: field admin_id: %w", err)
tl_phone_call_gen.go#L1131: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: field participant_id: %w", err)
tl_phone_call_gen.go#L1138: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: field g_b: %w", err)
tl_phone_call_gen.go#L1144: return fmt.Errorf("unable to decode phoneCallAccepted#997c454a: field protocol: %w", err)
tl_phone_call_gen.go#L1373: return fmt.Errorf("can't encode phoneCall#8742ae7f as nil")
tl_phone_call_gen.go#L1382: return fmt.Errorf("can't encode phoneCall#8742ae7f as nil")
tl_phone_call_gen.go#L1391: return fmt.Errorf("unable to encode phoneCall#8742ae7f: field flags: %w", err)
tl_phone_call_gen.go#L1401: return fmt.Errorf("unable to encode phoneCall#8742ae7f: field protocol: %w", err)
tl_phone_call_gen.go#L1406: return fmt.Errorf("unable to encode phoneCall#8742ae7f: field connections element with index %d is nil", idx)
tl_phone_call_gen.go#L1409: return fmt.Errorf("unable to encode phoneCall#8742ae7f: field connections element with index %d: %w", idx, err)
tl_phone_call_gen.go#L1506: return fmt.Errorf("can't decode phoneCall#8742ae7f to nil")
tl_phone_call_gen.go#L1509: return fmt.Errorf("unable to decode phoneCall#8742ae7f: %w", err)
tl_phone_call_gen.go#L1517: return fmt.Errorf("can't decode phoneCall#8742ae7f to nil")
tl_phone_call_gen.go#L1521: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field flags: %w", err)
tl_phone_call_gen.go#L1529: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field id: %w", err)
tl_phone_call_gen.go#L1536: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field access_hash: %w", err)
tl_phone_call_gen.go#L1543: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field date: %w", err)
tl_phone_call_gen.go#L1550: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field admin_id: %w", err)
tl_phone_call_gen.go#L1557: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field participant_id: %w", err)
tl_phone_call_gen.go#L1564: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field g_a_or_b: %w", err)
tl_phone_call_gen.go#L1571: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field key_fingerprint: %w", err)
tl_phone_call_gen.go#L1577: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field protocol: %w", err)
tl_phone_call_gen.go#L1583: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field connections: %w", err)
tl_phone_call_gen.go#L1588: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field connections: %w", err)
tl_phone_call_gen.go#L1596: return fmt.Errorf("unable to decode phoneCall#8742ae7f: field start_date: %w", err)
tl_phone_call_gen.go#L1773: return fmt.Errorf("can't encode phoneCallDiscarded#50ca4de1 as nil")
tl_phone_call_gen.go#L1782: return fmt.Errorf("can't encode phoneCallDiscarded#50ca4de1 as nil")
tl_phone_call_gen.go#L1800: return fmt.Errorf("unable to encode phoneCallDiscarded#50ca4de1: field flags: %w", err)
tl_phone_call_gen.go#L1805: return fmt.Errorf("unable to encode phoneCallDiscarded#50ca4de1: field reason is nil")
tl_phone_call_gen.go#L1808: return fmt.Errorf("unable to encode phoneCallDiscarded#50ca4de1: field reason: %w", err)
tl_phone_call_gen.go#L1903: return fmt.Errorf("can't decode phoneCallDiscarded#50ca4de1 to nil")
tl_phone_call_gen.go#L1906: return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: %w", err)
tl_phone_call_gen.go#L1914: return fmt.Errorf("can't decode phoneCallDiscarded#50ca4de1 to nil")
tl_phone_call_gen.go#L1918: return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: field flags: %w", err)
tl_phone_call_gen.go#L1927: return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: field id: %w", err)
tl_phone_call_gen.go#L1934: return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: field reason: %w", err)
tl_phone_call_gen.go#L1941: return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: field duration: %w", err)
tl_phone_call_gen.go#L2086: return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
tl_phone_call_gen.go#L2093: return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
tl_phone_call_gen.go#L2100: return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
tl_phone_call_gen.go#L2107: return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
tl_phone_call_gen.go#L2114: return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
tl_phone_call_gen.go#L2121: return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
tl_phone_call_gen.go#L2125: return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", bin.NewUnexpectedID(id))
tl_phone_call_gen.go#L2137: return fmt.Errorf("unable to decode PhoneCallBox to nil")
tl_phone_call_gen.go#L2141: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_phone_call_gen.go#L2150: return fmt.Errorf("unable to encode PhoneCallClass as nil")
tl_phone_call_protocol_gen.go#L168: return fmt.Errorf("can't encode phoneCallProtocol#fc878fc8 as nil")
tl_phone_call_protocol_gen.go#L177: return fmt.Errorf("can't encode phoneCallProtocol#fc878fc8 as nil")
tl_phone_call_protocol_gen.go#L186: return fmt.Errorf("unable to encode phoneCallProtocol#fc878fc8: field flags: %w", err)
tl_phone_call_protocol_gen.go#L247: return fmt.Errorf("can't decode phoneCallProtocol#fc878fc8 to nil")
tl_phone_call_protocol_gen.go#L250: return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: %w", err)
tl_phone_call_protocol_gen.go#L258: return fmt.Errorf("can't decode phoneCallProtocol#fc878fc8 to nil")
tl_phone_call_protocol_gen.go#L262: return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field flags: %w", err)
tl_phone_call_protocol_gen.go#L270: return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field min_layer: %w", err)
tl_phone_call_protocol_gen.go#L277: return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field max_layer: %w", err)
tl_phone_call_protocol_gen.go#L284: return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field library_versions: %w", err)
tl_phone_call_protocol_gen.go#L289: return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field library_versions: %w", err)
tl_phone_check_group_call_gen.go#L115: return fmt.Errorf("can't encode phone.checkGroupCall#b74a7bea as nil")
tl_phone_check_group_call_gen.go#L124: return fmt.Errorf("can't encode phone.checkGroupCall#b74a7bea as nil")
tl_phone_check_group_call_gen.go#L127: return fmt.Errorf("unable to encode phone.checkGroupCall#b74a7bea: field call: %w", err)
tl_phone_check_group_call_gen.go#L146: return fmt.Errorf("can't decode phone.checkGroupCall#b74a7bea to nil")
tl_phone_check_group_call_gen.go#L149: return fmt.Errorf("unable to decode phone.checkGroupCall#b74a7bea: %w", err)
tl_phone_check_group_call_gen.go#L157: return fmt.Errorf("can't decode phone.checkGroupCall#b74a7bea to nil")
tl_phone_check_group_call_gen.go#L161: return fmt.Errorf("unable to decode phone.checkGroupCall#b74a7bea: field call: %w", err)
tl_phone_check_group_call_gen.go#L167: return fmt.Errorf("unable to decode phone.checkGroupCall#b74a7bea: field source: %w", err)
tl_phone_confirm_call_gen.go#L144: return fmt.Errorf("can't encode phone.confirmCall#2efe1722 as nil")
tl_phone_confirm_call_gen.go#L153: return fmt.Errorf("can't encode phone.confirmCall#2efe1722 as nil")
tl_phone_confirm_call_gen.go#L156: return fmt.Errorf("unable to encode phone.confirmCall#2efe1722: field peer: %w", err)
tl_phone_confirm_call_gen.go#L161: return fmt.Errorf("unable to encode phone.confirmCall#2efe1722: field protocol: %w", err)
tl_phone_confirm_call_gen.go#L189: return fmt.Errorf("can't decode phone.confirmCall#2efe1722 to nil")
tl_phone_confirm_call_gen.go#L192: return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: %w", err)
tl_phone_confirm_call_gen.go#L200: return fmt.Errorf("can't decode phone.confirmCall#2efe1722 to nil")
tl_phone_confirm_call_gen.go#L204: return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: field peer: %w", err)
tl_phone_confirm_call_gen.go#L210: return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: field g_a: %w", err)
tl_phone_confirm_call_gen.go#L217: return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: field key_fingerprint: %w", err)
tl_phone_confirm_call_gen.go#L223: return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: field protocol: %w", err)
tl_phone_connection_gen.go#L149: return fmt.Errorf("can't encode phoneConnection#9d4c17c0 as nil")
tl_phone_connection_gen.go#L158: return fmt.Errorf("can't encode phoneConnection#9d4c17c0 as nil")
tl_phone_connection_gen.go#L196: return fmt.Errorf("can't decode phoneConnection#9d4c17c0 to nil")
tl_phone_connection_gen.go#L199: return fmt.Errorf("unable to decode phoneConnection#9d4c17c0: %w", err)
tl_phone_connection_gen.go#L207: return fmt.Errorf("can't decode phoneConnection#9d4c17c0 to nil")
tl_phone_connection_gen.go#L212: return fmt.Errorf("unable to decode phoneConnection#9d4c17c0: field id: %w", err)
tl_phone_connection_gen.go#L219: return fmt.Errorf("unable to decode phoneConnection#9d4c17c0: field ip: %w", err)
tl_phone_connection_gen.go#L226: return fmt.Errorf("unable to decode phoneConnection#9d4c17c0: field ipv6: %w", err)
tl_phone_connection_gen.go#L233: return fmt.Errorf("unable to decode phoneConnection#9d4c17c0: field port: %w", err)
tl_phone_connection_gen.go#L240: return fmt.Errorf("unable to decode phoneConnection#9d4c17c0: field peer_tag: %w", err)
tl_phone_connection_gen.go#L420: return fmt.Errorf("can't encode phoneConnectionWebrtc#635fe375 as nil")
tl_phone_connection_gen.go#L429: return fmt.Errorf("can't encode phoneConnectionWebrtc#635fe375 as nil")
tl_phone_connection_gen.go#L438: return fmt.Errorf("unable to encode phoneConnectionWebrtc#635fe375: field flags: %w", err)
tl_phone_connection_gen.go#L514: return fmt.Errorf("can't decode phoneConnectionWebrtc#635fe375 to nil")
tl_phone_connection_gen.go#L517: return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: %w", err)
tl_phone_connection_gen.go#L525: return fmt.Errorf("can't decode phoneConnectionWebrtc#635fe375 to nil")
tl_phone_connection_gen.go#L529: return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field flags: %w", err)
tl_phone_connection_gen.go#L537: return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field id: %w", err)
tl_phone_connection_gen.go#L544: return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field ip: %w", err)
tl_phone_connection_gen.go#L551: return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field ipv6: %w", err)
tl_phone_connection_gen.go#L558: return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field port: %w", err)
tl_phone_connection_gen.go#L565: return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field username: %w", err)
tl_phone_connection_gen.go#L572: return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field password: %w", err)
tl_phone_connection_gen.go#L648: return nil, fmt.Errorf("unable to decode PhoneConnectionClass: %w", err)
tl_phone_connection_gen.go#L655: return nil, fmt.Errorf("unable to decode PhoneConnectionClass: %w", err)
tl_phone_connection_gen.go#L659: return nil, fmt.Errorf("unable to decode PhoneConnectionClass: %w", bin.NewUnexpectedID(id))
tl_phone_connection_gen.go#L671: return fmt.Errorf("unable to decode PhoneConnectionBox to nil")
tl_phone_connection_gen.go#L675: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_phone_connection_gen.go#L684: return fmt.Errorf("unable to encode PhoneConnectionClass as nil")
tl_phone_create_group_call_gen.go#L154: return fmt.Errorf("can't encode phone.createGroupCall#48cdc6d8 as nil")
tl_phone_create_group_call_gen.go#L163: return fmt.Errorf("can't encode phone.createGroupCall#48cdc6d8 as nil")
tl_phone_create_group_call_gen.go#L172: return fmt.Errorf("unable to encode phone.createGroupCall#48cdc6d8: field flags: %w", err)
tl_phone_create_group_call_gen.go#L175: return fmt.Errorf("unable to encode phone.createGroupCall#48cdc6d8: field peer is nil")
tl_phone_create_group_call_gen.go#L178: return fmt.Errorf("unable to encode phone.createGroupCall#48cdc6d8: field peer: %w", err)
tl_phone_create_group_call_gen.go#L233: return fmt.Errorf("can't decode phone.createGroupCall#48cdc6d8 to nil")
tl_phone_create_group_call_gen.go#L236: return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: %w", err)
tl_phone_create_group_call_gen.go#L244: return fmt.Errorf("can't decode phone.createGroupCall#48cdc6d8 to nil")
tl_phone_create_group_call_gen.go#L248: return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field flags: %w", err)
tl_phone_create_group_call_gen.go#L254: return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field peer: %w", err)
tl_phone_create_group_call_gen.go#L261: return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field random_id: %w", err)
tl_phone_create_group_call_gen.go#L268: return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field title: %w", err)
tl_phone_create_group_call_gen.go#L275: return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field schedule_date: %w", err)
tl_phone_discard_call_gen.go#L158: return fmt.Errorf("can't encode phone.discardCall#b2cbc1c0 as nil")
tl_phone_discard_call_gen.go#L167: return fmt.Errorf("can't encode phone.discardCall#b2cbc1c0 as nil")
tl_phone_discard_call_gen.go#L173: return fmt.Errorf("unable to encode phone.discardCall#b2cbc1c0: field flags: %w", err)
tl_phone_discard_call_gen.go#L176: return fmt.Errorf("unable to encode phone.discardCall#b2cbc1c0: field peer: %w", err)
tl_phone_discard_call_gen.go#L180: return fmt.Errorf("unable to encode phone.discardCall#b2cbc1c0: field reason is nil")
tl_phone_discard_call_gen.go#L183: return fmt.Errorf("unable to encode phone.discardCall#b2cbc1c0: field reason: %w", err)
tl_phone_discard_call_gen.go#L228: return fmt.Errorf("can't decode phone.discardCall#b2cbc1c0 to nil")
tl_phone_discard_call_gen.go#L231: return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: %w", err)
tl_phone_discard_call_gen.go#L239: return fmt.Errorf("can't decode phone.discardCall#b2cbc1c0 to nil")
tl_phone_discard_call_gen.go#L243: return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field flags: %w", err)
tl_phone_discard_call_gen.go#L249: return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field peer: %w", err)
tl_phone_discard_call_gen.go#L255: return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field duration: %w", err)
tl_phone_discard_call_gen.go#L262: return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field reason: %w", err)
tl_phone_discard_call_gen.go#L269: return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field connection_id: %w", err)
tl_phone_discard_group_call_gen.go#L104: return fmt.Errorf("can't encode phone.discardGroupCall#7a777135 as nil")
tl_phone_discard_group_call_gen.go#L113: return fmt.Errorf("can't encode phone.discardGroupCall#7a777135 as nil")
tl_phone_discard_group_call_gen.go#L116: return fmt.Errorf("unable to encode phone.discardGroupCall#7a777135: field call: %w", err)
tl_phone_discard_group_call_gen.go#L129: return fmt.Errorf("can't decode phone.discardGroupCall#7a777135 to nil")
tl_phone_discard_group_call_gen.go#L132: return fmt.Errorf("unable to decode phone.discardGroupCall#7a777135: %w", err)
tl_phone_discard_group_call_gen.go#L140: return fmt.Errorf("can't decode phone.discardGroupCall#7a777135 to nil")
tl_phone_discard_group_call_gen.go#L144: return fmt.Errorf("unable to decode phone.discardGroupCall#7a777135: field call: %w", err)
tl_phone_edit_group_call_participant_gen.go#L166: return fmt.Errorf("can't encode phone.editGroupCallParticipant#d975eb80 as nil")
tl_phone_edit_group_call_participant_gen.go#L175: return fmt.Errorf("can't encode phone.editGroupCallParticipant#d975eb80 as nil")
tl_phone_edit_group_call_participant_gen.go#L187: return fmt.Errorf("unable to encode phone.editGroupCallParticipant#d975eb80: field flags: %w", err)
tl_phone_edit_group_call_participant_gen.go#L190: return fmt.Errorf("unable to encode phone.editGroupCallParticipant#d975eb80: field call: %w", err)
tl_phone_edit_group_call_participant_gen.go#L193: return fmt.Errorf("unable to encode phone.editGroupCallParticipant#d975eb80: field participant is nil")
tl_phone_edit_group_call_participant_gen.go#L196: return fmt.Errorf("unable to encode phone.editGroupCallParticipant#d975eb80: field participant: %w", err)
tl_phone_edit_group_call_participant_gen.go#L266: return fmt.Errorf("can't decode phone.editGroupCallParticipant#d975eb80 to nil")
tl_phone_edit_group_call_participant_gen.go#L269: return fmt.Errorf("unable to decode phone.editGroupCallParticipant#d975eb80: %w", err)
tl_phone_edit_group_call_participant_gen.go#L277: return fmt.Errorf("can't decode phone.editGroupCallParticipant#d975eb80 to nil")
tl_phone_edit_group_call_participant_gen.go#L281: return fmt.Errorf("unable to decode phone.editGroupCallParticipant#d975eb80: field flags: %w", err)
tl_phone_edit_group_call_participant_gen.go#L287: return fmt.Errorf("unable to decode phone.editGroupCallParticipant#d975eb80: field call: %w", err)
tl_phone_edit_group_call_participant_gen.go#L293: return fmt.Errorf("unable to decode phone.editGroupCallParticipant#d975eb80: field participant: %w", err)
tl_phone_edit_group_call_participant_gen.go#L300: return fmt.Errorf("unable to decode phone.editGroupCallParticipant#d975eb80: field volume: %w", err)
tl_phone_edit_group_call_participant_gen.go#L307: return fmt.Errorf("unable to decode phone.editGroupCallParticipant#d975eb80: field raise_hand: %w", err)
tl_phone_edit_group_call_title_gen.go#L115: return fmt.Errorf("can't encode phone.editGroupCallTitle#1ca6ac0a as nil")
tl_phone_edit_group_call_title_gen.go#L124: return fmt.Errorf("can't encode phone.editGroupCallTitle#1ca6ac0a as nil")
tl_phone_edit_group_call_title_gen.go#L127: return fmt.Errorf("unable to encode phone.editGroupCallTitle#1ca6ac0a: field call: %w", err)
tl_phone_edit_group_call_title_gen.go#L146: return fmt.Errorf("can't decode phone.editGroupCallTitle#1ca6ac0a to nil")
tl_phone_edit_group_call_title_gen.go#L149: return fmt.Errorf("unable to decode phone.editGroupCallTitle#1ca6ac0a: %w", err)
tl_phone_edit_group_call_title_gen.go#L157: return fmt.Errorf("can't decode phone.editGroupCallTitle#1ca6ac0a to nil")
tl_phone_edit_group_call_title_gen.go#L161: return fmt.Errorf("unable to decode phone.editGroupCallTitle#1ca6ac0a: field call: %w", err)
tl_phone_edit_group_call_title_gen.go#L167: return fmt.Errorf("unable to decode phone.editGroupCallTitle#1ca6ac0a: field title: %w", err)
tl_phone_export_group_call_invite_gen.go#L121: return fmt.Errorf("can't encode phone.exportGroupCallInvite#e6aa647f as nil")
tl_phone_export_group_call_invite_gen.go#L130: return fmt.Errorf("can't encode phone.exportGroupCallInvite#e6aa647f as nil")
tl_phone_export_group_call_invite_gen.go#L136: return fmt.Errorf("unable to encode phone.exportGroupCallInvite#e6aa647f: field flags: %w", err)
tl_phone_export_group_call_invite_gen.go#L139: return fmt.Errorf("unable to encode phone.exportGroupCallInvite#e6aa647f: field call: %w", err)
tl_phone_export_group_call_invite_gen.go#L168: return fmt.Errorf("can't decode phone.exportGroupCallInvite#e6aa647f to nil")
tl_phone_export_group_call_invite_gen.go#L171: return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: %w", err)
tl_phone_export_group_call_invite_gen.go#L179: return fmt.Errorf("can't decode phone.exportGroupCallInvite#e6aa647f to nil")
tl_phone_export_group_call_invite_gen.go#L183: return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: field flags: %w", err)
tl_phone_export_group_call_invite_gen.go#L189: return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: field call: %w", err)
tl_phone_exported_group_call_invite_gen.go#L104: return fmt.Errorf("can't encode phone.exportedGroupCallInvite#204bd158 as nil")
tl_phone_exported_group_call_invite_gen.go#L113: return fmt.Errorf("can't encode phone.exportedGroupCallInvite#204bd158 as nil")
tl_phone_exported_group_call_invite_gen.go#L127: return fmt.Errorf("can't decode phone.exportedGroupCallInvite#204bd158 to nil")
tl_phone_exported_group_call_invite_gen.go#L130: return fmt.Errorf("unable to decode phone.exportedGroupCallInvite#204bd158: %w", err)
tl_phone_exported_group_call_invite_gen.go#L138: return fmt.Errorf("can't decode phone.exportedGroupCallInvite#204bd158 to nil")
tl_phone_exported_group_call_invite_gen.go#L143: return fmt.Errorf("unable to decode phone.exportedGroupCallInvite#204bd158: field link: %w", err)
tl_phone_get_call_config_gen.go#L88: return fmt.Errorf("can't encode phone.getCallConfig#55451fa9 as nil")
tl_phone_get_call_config_gen.go#L97: return fmt.Errorf("can't encode phone.getCallConfig#55451fa9 as nil")
tl_phone_get_call_config_gen.go#L105: return fmt.Errorf("can't decode phone.getCallConfig#55451fa9 to nil")
tl_phone_get_call_config_gen.go#L108: return fmt.Errorf("unable to decode phone.getCallConfig#55451fa9: %w", err)
tl_phone_get_call_config_gen.go#L116: return fmt.Errorf("can't decode phone.getCallConfig#55451fa9 to nil")
tl_phone_get_group_call_gen.go#L104: return fmt.Errorf("can't encode phone.getGroupCall#c7cb017 as nil")
tl_phone_get_group_call_gen.go#L113: return fmt.Errorf("can't encode phone.getGroupCall#c7cb017 as nil")
tl_phone_get_group_call_gen.go#L116: return fmt.Errorf("unable to encode phone.getGroupCall#c7cb017: field call: %w", err)
tl_phone_get_group_call_gen.go#L129: return fmt.Errorf("can't decode phone.getGroupCall#c7cb017 to nil")
tl_phone_get_group_call_gen.go#L132: return fmt.Errorf("unable to decode phone.getGroupCall#c7cb017: %w", err)
tl_phone_get_group_call_gen.go#L140: return fmt.Errorf("can't decode phone.getGroupCall#c7cb017 to nil")
tl_phone_get_group_call_gen.go#L144: return fmt.Errorf("unable to decode phone.getGroupCall#c7cb017: field call: %w", err)
tl_phone_get_group_call_join_as_gen.go#L104: return fmt.Errorf("can't encode phone.getGroupCallJoinAs#ef7c213a as nil")
tl_phone_get_group_call_join_as_gen.go#L113: return fmt.Errorf("can't encode phone.getGroupCallJoinAs#ef7c213a as nil")
tl_phone_get_group_call_join_as_gen.go#L116: return fmt.Errorf("unable to encode phone.getGroupCallJoinAs#ef7c213a: field peer is nil")
tl_phone_get_group_call_join_as_gen.go#L119: return fmt.Errorf("unable to encode phone.getGroupCallJoinAs#ef7c213a: field peer: %w", err)
tl_phone_get_group_call_join_as_gen.go#L132: return fmt.Errorf("can't decode phone.getGroupCallJoinAs#ef7c213a to nil")
tl_phone_get_group_call_join_as_gen.go#L135: return fmt.Errorf("unable to decode phone.getGroupCallJoinAs#ef7c213a: %w", err)
tl_phone_get_group_call_join_as_gen.go#L143: return fmt.Errorf("can't decode phone.getGroupCallJoinAs#ef7c213a to nil")
tl_phone_get_group_call_join_as_gen.go#L148: return fmt.Errorf("unable to decode phone.getGroupCallJoinAs#ef7c213a: field peer: %w", err)
tl_phone_get_group_participants_gen.go#L148: return fmt.Errorf("can't encode phone.getGroupParticipants#c558d8ab as nil")
tl_phone_get_group_participants_gen.go#L157: return fmt.Errorf("can't encode phone.getGroupParticipants#c558d8ab as nil")
tl_phone_get_group_participants_gen.go#L160: return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field call: %w", err)
tl_phone_get_group_participants_gen.go#L165: return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field ids element with index %d is nil", idx)
tl_phone_get_group_participants_gen.go#L168: return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field ids element with index %d: %w", idx, err)
tl_phone_get_group_participants_gen.go#L213: return fmt.Errorf("can't decode phone.getGroupParticipants#c558d8ab to nil")
tl_phone_get_group_participants_gen.go#L216: return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: %w", err)
tl_phone_get_group_participants_gen.go#L224: return fmt.Errorf("can't decode phone.getGroupParticipants#c558d8ab to nil")
tl_phone_get_group_participants_gen.go#L228: return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field call: %w", err)
tl_phone_get_group_participants_gen.go#L234: return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field ids: %w", err)
tl_phone_get_group_participants_gen.go#L239: return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field ids: %w", err)
tl_phone_get_group_participants_gen.go#L247: return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field sources: %w", err)
tl_phone_get_group_participants_gen.go#L252: return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field sources: %w", err)
tl_phone_get_group_participants_gen.go#L260: return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field offset: %w", err)
tl_phone_get_group_participants_gen.go#L267: return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field limit: %w", err)
tl_phone_group_call_gen.go#L148: return fmt.Errorf("can't encode phone.groupCall#9e727aad as nil")
tl_phone_group_call_gen.go#L157: return fmt.Errorf("can't encode phone.groupCall#9e727aad as nil")
tl_phone_group_call_gen.go#L160: return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field call is nil")
tl_phone_group_call_gen.go#L163: return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field call: %w", err)
tl_phone_group_call_gen.go#L168: return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field participants element with index %d: %w", idx, err)
tl_phone_group_call_gen.go#L175: return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field chats element with index %d is nil", idx)
tl_phone_group_call_gen.go#L178: return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field chats element with index %d: %w", idx, err)
tl_phone_group_call_gen.go#L184: return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field users element with index %d is nil", idx)
tl_phone_group_call_gen.go#L187: return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field users element with index %d: %w", idx, err)
tl_phone_group_call_gen.go#L231: return fmt.Errorf("can't decode phone.groupCall#9e727aad to nil")
tl_phone_group_call_gen.go#L234: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: %w", err)
tl_phone_group_call_gen.go#L242: return fmt.Errorf("can't decode phone.groupCall#9e727aad to nil")
tl_phone_group_call_gen.go#L247: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field call: %w", err)
tl_phone_group_call_gen.go#L254: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field participants: %w", err)
tl_phone_group_call_gen.go#L259: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field participants: %w", err)
tl_phone_group_call_gen.go#L267: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field participants_next_offset: %w", err)
tl_phone_group_call_gen.go#L274: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field chats: %w", err)
tl_phone_group_call_gen.go#L279: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field chats: %w", err)
tl_phone_group_call_gen.go#L287: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field users: %w", err)
tl_phone_group_call_gen.go#L292: return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field users: %w", err)
tl_phone_group_participants_gen.go#L159: return fmt.Errorf("can't encode phone.groupParticipants#f47751b6 as nil")
tl_phone_group_participants_gen.go#L168: return fmt.Errorf("can't encode phone.groupParticipants#f47751b6 as nil")
tl_phone_group_participants_gen.go#L174: return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field participants element with index %d: %w", idx, err)
tl_phone_group_participants_gen.go#L181: return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field chats element with index %d is nil", idx)
tl_phone_group_participants_gen.go#L184: return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field chats element with index %d: %w", idx, err)
tl_phone_group_participants_gen.go#L190: return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field users element with index %d is nil", idx)
tl_phone_group_participants_gen.go#L193: return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field users element with index %d: %w", idx, err)
tl_phone_group_participants_gen.go#L243: return fmt.Errorf("can't decode phone.groupParticipants#f47751b6 to nil")
tl_phone_group_participants_gen.go#L246: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: %w", err)
tl_phone_group_participants_gen.go#L254: return fmt.Errorf("can't decode phone.groupParticipants#f47751b6 to nil")
tl_phone_group_participants_gen.go#L259: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field count: %w", err)
tl_phone_group_participants_gen.go#L266: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field participants: %w", err)
tl_phone_group_participants_gen.go#L271: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field participants: %w", err)
tl_phone_group_participants_gen.go#L279: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field next_offset: %w", err)
tl_phone_group_participants_gen.go#L286: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field chats: %w", err)
tl_phone_group_participants_gen.go#L291: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field chats: %w", err)
tl_phone_group_participants_gen.go#L299: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field users: %w", err)
tl_phone_group_participants_gen.go#L304: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field users: %w", err)
tl_phone_group_participants_gen.go#L312: return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field version: %w", err)
tl_phone_invite_to_group_call_gen.go#L115: return fmt.Errorf("can't encode phone.inviteToGroupCall#7b393160 as nil")
tl_phone_invite_to_group_call_gen.go#L124: return fmt.Errorf("can't encode phone.inviteToGroupCall#7b393160 as nil")
tl_phone_invite_to_group_call_gen.go#L127: return fmt.Errorf("unable to encode phone.inviteToGroupCall#7b393160: field call: %w", err)
tl_phone_invite_to_group_call_gen.go#L132: return fmt.Errorf("unable to encode phone.inviteToGroupCall#7b393160: field users element with index %d is nil", idx)
tl_phone_invite_to_group_call_gen.go#L135: return fmt.Errorf("unable to encode phone.inviteToGroupCall#7b393160: field users element with index %d: %w", idx, err)
tl_phone_invite_to_group_call_gen.go#L159: return fmt.Errorf("can't decode phone.inviteToGroupCall#7b393160 to nil")
tl_phone_invite_to_group_call_gen.go#L162: return fmt.Errorf("unable to decode phone.inviteToGroupCall#7b393160: %w", err)
tl_phone_invite_to_group_call_gen.go#L170: return fmt.Errorf("can't decode phone.inviteToGroupCall#7b393160 to nil")
tl_phone_invite_to_group_call_gen.go#L174: return fmt.Errorf("unable to decode phone.inviteToGroupCall#7b393160: field call: %w", err)
tl_phone_invite_to_group_call_gen.go#L180: return fmt.Errorf("unable to decode phone.inviteToGroupCall#7b393160: field users: %w", err)
tl_phone_invite_to_group_call_gen.go#L185: return fmt.Errorf("unable to decode phone.inviteToGroupCall#7b393160: field users: %w", err)
tl_phone_join_as_peers_gen.go#L126: return fmt.Errorf("can't encode phone.joinAsPeers#afe5623f as nil")
tl_phone_join_as_peers_gen.go#L135: return fmt.Errorf("can't encode phone.joinAsPeers#afe5623f as nil")
tl_phone_join_as_peers_gen.go#L140: return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field peers element with index %d is nil", idx)
tl_phone_join_as_peers_gen.go#L143: return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field peers element with index %d: %w", idx, err)
tl_phone_join_as_peers_gen.go#L149: return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field chats element with index %d is nil", idx)
tl_phone_join_as_peers_gen.go#L152: return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field chats element with index %d: %w", idx, err)
tl_phone_join_as_peers_gen.go#L158: return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field users element with index %d is nil", idx)
tl_phone_join_as_peers_gen.go#L161: return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field users element with index %d: %w", idx, err)
tl_phone_join_as_peers_gen.go#L200: return fmt.Errorf("can't decode phone.joinAsPeers#afe5623f to nil")
tl_phone_join_as_peers_gen.go#L203: return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: %w", err)
tl_phone_join_as_peers_gen.go#L211: return fmt.Errorf("can't decode phone.joinAsPeers#afe5623f to nil")
tl_phone_join_as_peers_gen.go#L216: return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field peers: %w", err)
tl_phone_join_as_peers_gen.go#L221: return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field peers: %w", err)
tl_phone_join_as_peers_gen.go#L229: return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field chats: %w", err)
tl_phone_join_as_peers_gen.go#L234: return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field chats: %w", err)
tl_phone_join_as_peers_gen.go#L242: return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field users: %w", err)
tl_phone_join_as_peers_gen.go#L247: return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field users: %w", err)
tl_phone_join_group_call_gen.go#L160: return fmt.Errorf("can't encode phone.joinGroupCall#b132ff7b as nil")
tl_phone_join_group_call_gen.go#L169: return fmt.Errorf("can't encode phone.joinGroupCall#b132ff7b as nil")
tl_phone_join_group_call_gen.go#L178: return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field flags: %w", err)
tl_phone_join_group_call_gen.go#L181: return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field call: %w", err)
tl_phone_join_group_call_gen.go#L184: return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field join_as is nil")
tl_phone_join_group_call_gen.go#L187: return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field join_as: %w", err)
tl_phone_join_group_call_gen.go#L193: return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field params: %w", err)
tl_phone_join_group_call_gen.go#L247: return fmt.Errorf("can't decode phone.joinGroupCall#b132ff7b to nil")
tl_phone_join_group_call_gen.go#L250: return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: %w", err)
tl_phone_join_group_call_gen.go#L258: return fmt.Errorf("can't decode phone.joinGroupCall#b132ff7b to nil")
tl_phone_join_group_call_gen.go#L262: return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field flags: %w", err)
tl_phone_join_group_call_gen.go#L268: return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field call: %w", err)
tl_phone_join_group_call_gen.go#L274: return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field join_as: %w", err)
tl_phone_join_group_call_gen.go#L281: return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field invite_hash: %w", err)
tl_phone_join_group_call_gen.go#L287: return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field params: %w", err)
tl_phone_leave_group_call_gen.go#L115: return fmt.Errorf("can't encode phone.leaveGroupCall#500377f9 as nil")
tl_phone_leave_group_call_gen.go#L124: return fmt.Errorf("can't encode phone.leaveGroupCall#500377f9 as nil")
tl_phone_leave_group_call_gen.go#L127: return fmt.Errorf("unable to encode phone.leaveGroupCall#500377f9: field call: %w", err)
tl_phone_leave_group_call_gen.go#L146: return fmt.Errorf("can't decode phone.leaveGroupCall#500377f9 to nil")
tl_phone_leave_group_call_gen.go#L149: return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: %w", err)
tl_phone_leave_group_call_gen.go#L157: return fmt.Errorf("can't decode phone.leaveGroupCall#500377f9 to nil")
tl_phone_leave_group_call_gen.go#L161: return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: field call: %w", err)
tl_phone_leave_group_call_gen.go#L167: return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: field source: %w", err)
tl_phone_phone_call_gen.go#L116: return fmt.Errorf("can't encode phone.phoneCall#ec82e140 as nil")
tl_phone_phone_call_gen.go#L125: return fmt.Errorf("can't encode phone.phoneCall#ec82e140 as nil")
tl_phone_phone_call_gen.go#L128: return fmt.Errorf("unable to encode phone.phoneCall#ec82e140: field phone_call is nil")
tl_phone_phone_call_gen.go#L131: return fmt.Errorf("unable to encode phone.phoneCall#ec82e140: field phone_call: %w", err)
tl_phone_phone_call_gen.go#L136: return fmt.Errorf("unable to encode phone.phoneCall#ec82e140: field users element with index %d is nil", idx)
tl_phone_phone_call_gen.go#L139: return fmt.Errorf("unable to encode phone.phoneCall#ec82e140: field users element with index %d: %w", idx, err)
tl_phone_phone_call_gen.go#L168: return fmt.Errorf("can't decode phone.phoneCall#ec82e140 to nil")
tl_phone_phone_call_gen.go#L171: return fmt.Errorf("unable to decode phone.phoneCall#ec82e140: %w", err)
tl_phone_phone_call_gen.go#L179: return fmt.Errorf("can't decode phone.phoneCall#ec82e140 to nil")
tl_phone_phone_call_gen.go#L184: return fmt.Errorf("unable to decode phone.phoneCall#ec82e140: field phone_call: %w", err)
tl_phone_phone_call_gen.go#L191: return fmt.Errorf("unable to decode phone.phoneCall#ec82e140: field users: %w", err)
tl_phone_phone_call_gen.go#L196: return fmt.Errorf("unable to decode phone.phoneCall#ec82e140: field users: %w", err)
tl_phone_received_call_gen.go#L106: return fmt.Errorf("can't encode phone.receivedCall#17d54f61 as nil")
tl_phone_received_call_gen.go#L115: return fmt.Errorf("can't encode phone.receivedCall#17d54f61 as nil")
tl_phone_received_call_gen.go#L118: return fmt.Errorf("unable to encode phone.receivedCall#17d54f61: field peer: %w", err)
tl_phone_received_call_gen.go#L131: return fmt.Errorf("can't decode phone.receivedCall#17d54f61 to nil")
tl_phone_received_call_gen.go#L134: return fmt.Errorf("unable to decode phone.receivedCall#17d54f61: %w", err)
tl_phone_received_call_gen.go#L142: return fmt.Errorf("can't decode phone.receivedCall#17d54f61 to nil")
tl_phone_received_call_gen.go#L146: return fmt.Errorf("unable to decode phone.receivedCall#17d54f61: field peer: %w", err)
tl_phone_request_call_gen.go#L161: return fmt.Errorf("can't encode phone.requestCall#42ff96ed as nil")
tl_phone_request_call_gen.go#L170: return fmt.Errorf("can't encode phone.requestCall#42ff96ed as nil")
tl_phone_request_call_gen.go#L176: return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field flags: %w", err)
tl_phone_request_call_gen.go#L179: return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field user_id is nil")
tl_phone_request_call_gen.go#L182: return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field user_id: %w", err)
tl_phone_request_call_gen.go#L187: return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field protocol: %w", err)
tl_phone_request_call_gen.go#L231: return fmt.Errorf("can't decode phone.requestCall#42ff96ed to nil")
tl_phone_request_call_gen.go#L234: return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: %w", err)
tl_phone_request_call_gen.go#L242: return fmt.Errorf("can't decode phone.requestCall#42ff96ed to nil")
tl_phone_request_call_gen.go#L246: return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field flags: %w", err)
tl_phone_request_call_gen.go#L253: return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field user_id: %w", err)
tl_phone_request_call_gen.go#L260: return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field random_id: %w", err)
tl_phone_request_call_gen.go#L267: return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field g_a_hash: %w", err)
tl_phone_request_call_gen.go#L273: return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field protocol: %w", err)
tl_phone_save_call_debug_gen.go#L116: return fmt.Errorf("can't encode phone.saveCallDebug#277add7e as nil")
tl_phone_save_call_debug_gen.go#L125: return fmt.Errorf("can't encode phone.saveCallDebug#277add7e as nil")
tl_phone_save_call_debug_gen.go#L128: return fmt.Errorf("unable to encode phone.saveCallDebug#277add7e: field peer: %w", err)
tl_phone_save_call_debug_gen.go#L131: return fmt.Errorf("unable to encode phone.saveCallDebug#277add7e: field debug: %w", err)
tl_phone_save_call_debug_gen.go#L149: return fmt.Errorf("can't decode phone.saveCallDebug#277add7e to nil")
tl_phone_save_call_debug_gen.go#L152: return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: %w", err)
tl_phone_save_call_debug_gen.go#L160: return fmt.Errorf("can't decode phone.saveCallDebug#277add7e to nil")
tl_phone_save_call_debug_gen.go#L164: return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: field peer: %w", err)
tl_phone_save_call_debug_gen.go#L169: return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: field debug: %w", err)
tl_phone_save_default_group_call_join_as_gen.go#L115: return fmt.Errorf("can't encode phone.saveDefaultGroupCallJoinAs#575e1f8c as nil")
tl_phone_save_default_group_call_join_as_gen.go#L124: return fmt.Errorf("can't encode phone.saveDefaultGroupCallJoinAs#575e1f8c as nil")
tl_phone_save_default_group_call_join_as_gen.go#L127: return fmt.Errorf("unable to encode phone.saveDefaultGroupCallJoinAs#575e1f8c: field peer is nil")
tl_phone_save_default_group_call_join_as_gen.go#L130: return fmt.Errorf("unable to encode phone.saveDefaultGroupCallJoinAs#575e1f8c: field peer: %w", err)
tl_phone_save_default_group_call_join_as_gen.go#L133: return fmt.Errorf("unable to encode phone.saveDefaultGroupCallJoinAs#575e1f8c: field join_as is nil")
tl_phone_save_default_group_call_join_as_gen.go#L136: return fmt.Errorf("unable to encode phone.saveDefaultGroupCallJoinAs#575e1f8c: field join_as: %w", err)
tl_phone_save_default_group_call_join_as_gen.go#L154: return fmt.Errorf("can't decode phone.saveDefaultGroupCallJoinAs#575e1f8c to nil")
tl_phone_save_default_group_call_join_as_gen.go#L157: return fmt.Errorf("unable to decode phone.saveDefaultGroupCallJoinAs#575e1f8c: %w", err)
tl_phone_save_default_group_call_join_as_gen.go#L165: return fmt.Errorf("can't decode phone.saveDefaultGroupCallJoinAs#575e1f8c to nil")
tl_phone_save_default_group_call_join_as_gen.go#L170: return fmt.Errorf("unable to decode phone.saveDefaultGroupCallJoinAs#575e1f8c: field peer: %w", err)
tl_phone_save_default_group_call_join_as_gen.go#L177: return fmt.Errorf("unable to decode phone.saveDefaultGroupCallJoinAs#575e1f8c: field join_as: %w", err)
tl_phone_send_signaling_data_gen.go#L116: return fmt.Errorf("can't encode phone.sendSignalingData#ff7a9383 as nil")
tl_phone_send_signaling_data_gen.go#L125: return fmt.Errorf("can't encode phone.sendSignalingData#ff7a9383 as nil")
tl_phone_send_signaling_data_gen.go#L128: return fmt.Errorf("unable to encode phone.sendSignalingData#ff7a9383: field peer: %w", err)
tl_phone_send_signaling_data_gen.go#L147: return fmt.Errorf("can't decode phone.sendSignalingData#ff7a9383 to nil")
tl_phone_send_signaling_data_gen.go#L150: return fmt.Errorf("unable to decode phone.sendSignalingData#ff7a9383: %w", err)
tl_phone_send_signaling_data_gen.go#L158: return fmt.Errorf("can't decode phone.sendSignalingData#ff7a9383 to nil")
tl_phone_send_signaling_data_gen.go#L162: return fmt.Errorf("unable to decode phone.sendSignalingData#ff7a9383: field peer: %w", err)
tl_phone_send_signaling_data_gen.go#L168: return fmt.Errorf("unable to decode phone.sendSignalingData#ff7a9383: field data: %w", err)
tl_phone_set_call_rating_gen.go#L147: return fmt.Errorf("can't encode phone.setCallRating#59ead627 as nil")
tl_phone_set_call_rating_gen.go#L156: return fmt.Errorf("can't encode phone.setCallRating#59ead627 as nil")
tl_phone_set_call_rating_gen.go#L162: return fmt.Errorf("unable to encode phone.setCallRating#59ead627: field flags: %w", err)
tl_phone_set_call_rating_gen.go#L165: return fmt.Errorf("unable to encode phone.setCallRating#59ead627: field peer: %w", err)
tl_phone_set_call_rating_gen.go#L206: return fmt.Errorf("can't decode phone.setCallRating#59ead627 to nil")
tl_phone_set_call_rating_gen.go#L209: return fmt.Errorf("unable to decode phone.setCallRating#59ead627: %w", err)
tl_phone_set_call_rating_gen.go#L217: return fmt.Errorf("can't decode phone.setCallRating#59ead627 to nil")
tl_phone_set_call_rating_gen.go#L221: return fmt.Errorf("unable to decode phone.setCallRating#59ead627: field flags: %w", err)
tl_phone_set_call_rating_gen.go#L227: return fmt.Errorf("unable to decode phone.setCallRating#59ead627: field peer: %w", err)
tl_phone_set_call_rating_gen.go#L233: return fmt.Errorf("unable to decode phone.setCallRating#59ead627: field rating: %w", err)
tl_phone_set_call_rating_gen.go#L240: return fmt.Errorf("unable to decode phone.setCallRating#59ead627: field comment: %w", err)
tl_phone_start_scheduled_group_call_gen.go#L104: return fmt.Errorf("can't encode phone.startScheduledGroupCall#5680e342 as nil")
tl_phone_start_scheduled_group_call_gen.go#L113: return fmt.Errorf("can't encode phone.startScheduledGroupCall#5680e342 as nil")
tl_phone_start_scheduled_group_call_gen.go#L116: return fmt.Errorf("unable to encode phone.startScheduledGroupCall#5680e342: field call: %w", err)
tl_phone_start_scheduled_group_call_gen.go#L129: return fmt.Errorf("can't decode phone.startScheduledGroupCall#5680e342 to nil")
tl_phone_start_scheduled_group_call_gen.go#L132: return fmt.Errorf("unable to decode phone.startScheduledGroupCall#5680e342: %w", err)
tl_phone_start_scheduled_group_call_gen.go#L140: return fmt.Errorf("can't decode phone.startScheduledGroupCall#5680e342 to nil")
tl_phone_start_scheduled_group_call_gen.go#L144: return fmt.Errorf("unable to decode phone.startScheduledGroupCall#5680e342: field call: %w", err)
tl_phone_toggle_group_call_record_gen.go#L138: return fmt.Errorf("can't encode phone.toggleGroupCallRecord#c02a66d7 as nil")
tl_phone_toggle_group_call_record_gen.go#L147: return fmt.Errorf("can't encode phone.toggleGroupCallRecord#c02a66d7 as nil")
tl_phone_toggle_group_call_record_gen.go#L156: return fmt.Errorf("unable to encode phone.toggleGroupCallRecord#c02a66d7: field flags: %w", err)
tl_phone_toggle_group_call_record_gen.go#L159: return fmt.Errorf("unable to encode phone.toggleGroupCallRecord#c02a66d7: field call: %w", err)
tl_phone_toggle_group_call_record_gen.go#L206: return fmt.Errorf("can't decode phone.toggleGroupCallRecord#c02a66d7 to nil")
tl_phone_toggle_group_call_record_gen.go#L209: return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#c02a66d7: %w", err)
tl_phone_toggle_group_call_record_gen.go#L217: return fmt.Errorf("can't decode phone.toggleGroupCallRecord#c02a66d7 to nil")
tl_phone_toggle_group_call_record_gen.go#L221: return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#c02a66d7: field flags: %w", err)
tl_phone_toggle_group_call_record_gen.go#L227: return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#c02a66d7: field call: %w", err)
tl_phone_toggle_group_call_record_gen.go#L233: return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#c02a66d7: field title: %w", err)
tl_phone_toggle_group_call_settings_gen.go#L138: return fmt.Errorf("can't encode phone.toggleGroupCallSettings#74bbb43d as nil")
tl_phone_toggle_group_call_settings_gen.go#L147: return fmt.Errorf("can't encode phone.toggleGroupCallSettings#74bbb43d as nil")
tl_phone_toggle_group_call_settings_gen.go#L156: return fmt.Errorf("unable to encode phone.toggleGroupCallSettings#74bbb43d: field flags: %w", err)
tl_phone_toggle_group_call_settings_gen.go#L159: return fmt.Errorf("unable to encode phone.toggleGroupCallSettings#74bbb43d: field call: %w", err)
tl_phone_toggle_group_call_settings_gen.go#L206: return fmt.Errorf("can't decode phone.toggleGroupCallSettings#74bbb43d to nil")
tl_phone_toggle_group_call_settings_gen.go#L209: return fmt.Errorf("unable to decode phone.toggleGroupCallSettings#74bbb43d: %w", err)
tl_phone_toggle_group_call_settings_gen.go#L217: return fmt.Errorf("can't decode phone.toggleGroupCallSettings#74bbb43d to nil")
tl_phone_toggle_group_call_settings_gen.go#L221: return fmt.Errorf("unable to decode phone.toggleGroupCallSettings#74bbb43d: field flags: %w", err)
tl_phone_toggle_group_call_settings_gen.go#L227: return fmt.Errorf("unable to decode phone.toggleGroupCallSettings#74bbb43d: field call: %w", err)
tl_phone_toggle_group_call_settings_gen.go#L233: return fmt.Errorf("unable to decode phone.toggleGroupCallSettings#74bbb43d: field join_muted: %w", err)
tl_phone_toggle_group_call_start_subscription_gen.go#L115: return fmt.Errorf("can't encode phone.toggleGroupCallStartSubscription#219c34e6 as nil")
tl_phone_toggle_group_call_start_subscription_gen.go#L124: return fmt.Errorf("can't encode phone.toggleGroupCallStartSubscription#219c34e6 as nil")
tl_phone_toggle_group_call_start_subscription_gen.go#L127: return fmt.Errorf("unable to encode phone.toggleGroupCallStartSubscription#219c34e6: field call: %w", err)
tl_phone_toggle_group_call_start_subscription_gen.go#L146: return fmt.Errorf("can't decode phone.toggleGroupCallStartSubscription#219c34e6 to nil")
tl_phone_toggle_group_call_start_subscription_gen.go#L149: return fmt.Errorf("unable to decode phone.toggleGroupCallStartSubscription#219c34e6: %w", err)
tl_phone_toggle_group_call_start_subscription_gen.go#L157: return fmt.Errorf("can't decode phone.toggleGroupCallStartSubscription#219c34e6 to nil")
tl_phone_toggle_group_call_start_subscription_gen.go#L161: return fmt.Errorf("unable to decode phone.toggleGroupCallStartSubscription#219c34e6: field call: %w", err)
tl_phone_toggle_group_call_start_subscription_gen.go#L167: return fmt.Errorf("unable to decode phone.toggleGroupCallStartSubscription#219c34e6: field subscribed: %w", err)
tl_photo_gen.go#L105: return fmt.Errorf("can't encode photoEmpty#2331b22d as nil")
tl_photo_gen.go#L114: return fmt.Errorf("can't encode photoEmpty#2331b22d as nil")
tl_photo_gen.go#L128: return fmt.Errorf("can't decode photoEmpty#2331b22d to nil")
tl_photo_gen.go#L131: return fmt.Errorf("unable to decode photoEmpty#2331b22d: %w", err)
tl_photo_gen.go#L139: return fmt.Errorf("can't decode photoEmpty#2331b22d to nil")
tl_photo_gen.go#L144: return fmt.Errorf("unable to decode photoEmpty#2331b22d: field id: %w", err)
tl_photo_gen.go#L335: return fmt.Errorf("can't encode photo#fb197a65 as nil")
tl_photo_gen.go#L344: return fmt.Errorf("can't encode photo#fb197a65 as nil")
tl_photo_gen.go#L353: return fmt.Errorf("unable to encode photo#fb197a65: field flags: %w", err)
tl_photo_gen.go#L362: return fmt.Errorf("unable to encode photo#fb197a65: field sizes element with index %d is nil", idx)
tl_photo_gen.go#L365: return fmt.Errorf("unable to encode photo#fb197a65: field sizes element with index %d: %w", idx, err)
tl_photo_gen.go#L372: return fmt.Errorf("unable to encode photo#fb197a65: field video_sizes element with index %d: %w", idx, err)
tl_photo_gen.go#L449: return fmt.Errorf("can't decode photo#fb197a65 to nil")
tl_photo_gen.go#L452: return fmt.Errorf("unable to decode photo#fb197a65: %w", err)
tl_photo_gen.go#L460: return fmt.Errorf("can't decode photo#fb197a65 to nil")
tl_photo_gen.go#L464: return fmt.Errorf("unable to decode photo#fb197a65: field flags: %w", err)
tl_photo_gen.go#L471: return fmt.Errorf("unable to decode photo#fb197a65: field id: %w", err)
tl_photo_gen.go#L478: return fmt.Errorf("unable to decode photo#fb197a65: field access_hash: %w", err)
tl_photo_gen.go#L485: return fmt.Errorf("unable to decode photo#fb197a65: field file_reference: %w", err)
tl_photo_gen.go#L492: return fmt.Errorf("unable to decode photo#fb197a65: field date: %w", err)
tl_photo_gen.go#L499: return fmt.Errorf("unable to decode photo#fb197a65: field sizes: %w", err)
tl_photo_gen.go#L504: return fmt.Errorf("unable to decode photo#fb197a65: field sizes: %w", err)
tl_photo_gen.go#L512: return fmt.Errorf("unable to decode photo#fb197a65: field video_sizes: %w", err)
tl_photo_gen.go#L517: return fmt.Errorf("unable to decode photo#fb197a65: field video_sizes: %w", err)
tl_photo_gen.go#L525: return fmt.Errorf("unable to decode photo#fb197a65: field dc_id: %w", err)
tl_photo_gen.go#L625: return nil, fmt.Errorf("unable to decode PhotoClass: %w", err)
tl_photo_gen.go#L632: return nil, fmt.Errorf("unable to decode PhotoClass: %w", err)
tl_photo_gen.go#L636: return nil, fmt.Errorf("unable to decode PhotoClass: %w", bin.NewUnexpectedID(id))
tl_photo_gen.go#L648: return fmt.Errorf("unable to decode PhotoBox to nil")
tl_photo_gen.go#L652: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_photo_gen.go#L661: return fmt.Errorf("unable to encode PhotoClass as nil")
tl_photo_size_gen.go#L108: return fmt.Errorf("can't encode photoSizeEmpty#e17e23c as nil")
tl_photo_size_gen.go#L117: return fmt.Errorf("can't encode photoSizeEmpty#e17e23c as nil")
tl_photo_size_gen.go#L131: return fmt.Errorf("can't decode photoSizeEmpty#e17e23c to nil")
tl_photo_size_gen.go#L134: return fmt.Errorf("unable to decode photoSizeEmpty#e17e23c: %w", err)
tl_photo_size_gen.go#L142: return fmt.Errorf("can't decode photoSizeEmpty#e17e23c to nil")
tl_photo_size_gen.go#L147: return fmt.Errorf("unable to decode photoSizeEmpty#e17e23c: field type: %w", err)
tl_photo_size_gen.go#L273: return fmt.Errorf("can't encode photoSize#75c78e60 as nil")
tl_photo_size_gen.go#L282: return fmt.Errorf("can't encode photoSize#75c78e60 as nil")
tl_photo_size_gen.go#L314: return fmt.Errorf("can't decode photoSize#75c78e60 to nil")
tl_photo_size_gen.go#L317: return fmt.Errorf("unable to decode photoSize#75c78e60: %w", err)
tl_photo_size_gen.go#L325: return fmt.Errorf("can't decode photoSize#75c78e60 to nil")
tl_photo_size_gen.go#L330: return fmt.Errorf("unable to decode photoSize#75c78e60: field type: %w", err)
tl_photo_size_gen.go#L337: return fmt.Errorf("unable to decode photoSize#75c78e60: field w: %w", err)
tl_photo_size_gen.go#L344: return fmt.Errorf("unable to decode photoSize#75c78e60: field h: %w", err)
tl_photo_size_gen.go#L351: return fmt.Errorf("unable to decode photoSize#75c78e60: field size: %w", err)
tl_photo_size_gen.go#L477: return fmt.Errorf("can't encode photoCachedSize#21e1ad6 as nil")
tl_photo_size_gen.go#L486: return fmt.Errorf("can't encode photoCachedSize#21e1ad6 as nil")
tl_photo_size_gen.go#L518: return fmt.Errorf("can't decode photoCachedSize#21e1ad6 to nil")
tl_photo_size_gen.go#L521: return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: %w", err)
tl_photo_size_gen.go#L529: return fmt.Errorf("can't decode photoCachedSize#21e1ad6 to nil")
tl_photo_size_gen.go#L534: return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: field type: %w", err)
tl_photo_size_gen.go#L541: return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: field w: %w", err)
tl_photo_size_gen.go#L548: return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: field h: %w", err)
tl_photo_size_gen.go#L555: return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: field bytes: %w", err)
tl_photo_size_gen.go#L662: return fmt.Errorf("can't encode photoStrippedSize#e0b0bc2e as nil")
tl_photo_size_gen.go#L671: return fmt.Errorf("can't encode photoStrippedSize#e0b0bc2e as nil")
tl_photo_size_gen.go#L691: return fmt.Errorf("can't decode photoStrippedSize#e0b0bc2e to nil")
tl_photo_size_gen.go#L694: return fmt.Errorf("unable to decode photoStrippedSize#e0b0bc2e: %w", err)
tl_photo_size_gen.go#L702: return fmt.Errorf("can't decode photoStrippedSize#e0b0bc2e to nil")
tl_photo_size_gen.go#L707: return fmt.Errorf("unable to decode photoStrippedSize#e0b0bc2e: field type: %w", err)
tl_photo_size_gen.go#L714: return fmt.Errorf("unable to decode photoStrippedSize#e0b0bc2e: field bytes: %w", err)
tl_photo_size_gen.go#L841: return fmt.Errorf("can't encode photoSizeProgressive#fa3efb95 as nil")
tl_photo_size_gen.go#L850: return fmt.Errorf("can't encode photoSizeProgressive#fa3efb95 as nil")
tl_photo_size_gen.go#L885: return fmt.Errorf("can't decode photoSizeProgressive#fa3efb95 to nil")
tl_photo_size_gen.go#L888: return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: %w", err)
tl_photo_size_gen.go#L896: return fmt.Errorf("can't decode photoSizeProgressive#fa3efb95 to nil")
tl_photo_size_gen.go#L901: return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field type: %w", err)
tl_photo_size_gen.go#L908: return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field w: %w", err)
tl_photo_size_gen.go#L915: return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field h: %w", err)
tl_photo_size_gen.go#L922: return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field sizes: %w", err)
tl_photo_size_gen.go#L927: return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field sizes: %w", err)
tl_photo_size_gen.go#L1036: return fmt.Errorf("can't encode photoPathSize#d8214d41 as nil")
tl_photo_size_gen.go#L1045: return fmt.Errorf("can't encode photoPathSize#d8214d41 as nil")
tl_photo_size_gen.go#L1065: return fmt.Errorf("can't decode photoPathSize#d8214d41 to nil")
tl_photo_size_gen.go#L1068: return fmt.Errorf("unable to decode photoPathSize#d8214d41: %w", err)
tl_photo_size_gen.go#L1076: return fmt.Errorf("can't decode photoPathSize#d8214d41 to nil")
tl_photo_size_gen.go#L1081: return fmt.Errorf("unable to decode photoPathSize#d8214d41: field type: %w", err)
tl_photo_size_gen.go#L1088: return fmt.Errorf("unable to decode photoPathSize#d8214d41: field bytes: %w", err)
tl_photo_size_gen.go#L1224: return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
tl_photo_size_gen.go#L1231: return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
tl_photo_size_gen.go#L1238: return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
tl_photo_size_gen.go#L1245: return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
tl_photo_size_gen.go#L1252: return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
tl_photo_size_gen.go#L1259: return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
tl_photo_size_gen.go#L1263: return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", bin.NewUnexpectedID(id))
tl_photo_size_gen.go#L1275: return fmt.Errorf("unable to decode PhotoSizeBox to nil")
tl_photo_size_gen.go#L1279: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_photo_size_gen.go#L1288: return fmt.Errorf("unable to encode PhotoSizeClass as nil")
tl_photos_delete_photos_gen.go#L105: return fmt.Errorf("can't encode photos.deletePhotos#87cf7f2f as nil")
tl_photos_delete_photos_gen.go#L114: return fmt.Errorf("can't encode photos.deletePhotos#87cf7f2f as nil")
tl_photos_delete_photos_gen.go#L119: return fmt.Errorf("unable to encode photos.deletePhotos#87cf7f2f: field id element with index %d is nil", idx)
tl_photos_delete_photos_gen.go#L122: return fmt.Errorf("unable to encode photos.deletePhotos#87cf7f2f: field id element with index %d: %w", idx, err)
tl_photos_delete_photos_gen.go#L141: return fmt.Errorf("can't decode photos.deletePhotos#87cf7f2f to nil")
tl_photos_delete_photos_gen.go#L144: return fmt.Errorf("unable to decode photos.deletePhotos#87cf7f2f: %w", err)
tl_photos_delete_photos_gen.go#L152: return fmt.Errorf("can't decode photos.deletePhotos#87cf7f2f to nil")
tl_photos_delete_photos_gen.go#L157: return fmt.Errorf("unable to decode photos.deletePhotos#87cf7f2f: field id: %w", err)
tl_photos_delete_photos_gen.go#L162: return fmt.Errorf("unable to decode photos.deletePhotos#87cf7f2f: field id: %w", err)
tl_photos_get_user_photos_gen.go#L139: return fmt.Errorf("can't encode photos.getUserPhotos#91cd32a8 as nil")
tl_photos_get_user_photos_gen.go#L148: return fmt.Errorf("can't encode photos.getUserPhotos#91cd32a8 as nil")
tl_photos_get_user_photos_gen.go#L151: return fmt.Errorf("unable to encode photos.getUserPhotos#91cd32a8: field user_id is nil")
tl_photos_get_user_photos_gen.go#L154: return fmt.Errorf("unable to encode photos.getUserPhotos#91cd32a8: field user_id: %w", err)
tl_photos_get_user_photos_gen.go#L185: return fmt.Errorf("can't decode photos.getUserPhotos#91cd32a8 to nil")
tl_photos_get_user_photos_gen.go#L188: return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: %w", err)
tl_photos_get_user_photos_gen.go#L196: return fmt.Errorf("can't decode photos.getUserPhotos#91cd32a8 to nil")
tl_photos_get_user_photos_gen.go#L201: return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: field user_id: %w", err)
tl_photos_get_user_photos_gen.go#L208: return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: field offset: %w", err)
tl_photos_get_user_photos_gen.go#L215: return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: field max_id: %w", err)
tl_photos_get_user_photos_gen.go#L222: return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: field limit: %w", err)
tl_photos_photo_gen.go#L116: return fmt.Errorf("can't encode photos.photo#20212ca8 as nil")
tl_photos_photo_gen.go#L125: return fmt.Errorf("can't encode photos.photo#20212ca8 as nil")
tl_photos_photo_gen.go#L128: return fmt.Errorf("unable to encode photos.photo#20212ca8: field photo is nil")
tl_photos_photo_gen.go#L131: return fmt.Errorf("unable to encode photos.photo#20212ca8: field photo: %w", err)
tl_photos_photo_gen.go#L136: return fmt.Errorf("unable to encode photos.photo#20212ca8: field users element with index %d is nil", idx)
tl_photos_photo_gen.go#L139: return fmt.Errorf("unable to encode photos.photo#20212ca8: field users element with index %d: %w", idx, err)
tl_photos_photo_gen.go#L168: return fmt.Errorf("can't decode photos.photo#20212ca8 to nil")
tl_photos_photo_gen.go#L171: return fmt.Errorf("unable to decode photos.photo#20212ca8: %w", err)
tl_photos_photo_gen.go#L179: return fmt.Errorf("can't decode photos.photo#20212ca8 to nil")
tl_photos_photo_gen.go#L184: return fmt.Errorf("unable to decode photos.photo#20212ca8: field photo: %w", err)
tl_photos_photo_gen.go#L191: return fmt.Errorf("unable to decode photos.photo#20212ca8: field users: %w", err)
tl_photos_photo_gen.go#L196: return fmt.Errorf("unable to decode photos.photo#20212ca8: field users: %w", err)
tl_photos_photos_gen.go#L116: return fmt.Errorf("can't encode photos.photos#8dca6aa5 as nil")
tl_photos_photos_gen.go#L125: return fmt.Errorf("can't encode photos.photos#8dca6aa5 as nil")
tl_photos_photos_gen.go#L130: return fmt.Errorf("unable to encode photos.photos#8dca6aa5: field photos element with index %d is nil", idx)
tl_photos_photos_gen.go#L133: return fmt.Errorf("unable to encode photos.photos#8dca6aa5: field photos element with index %d: %w", idx, err)
tl_photos_photos_gen.go#L139: return fmt.Errorf("unable to encode photos.photos#8dca6aa5: field users element with index %d is nil", idx)
tl_photos_photos_gen.go#L142: return fmt.Errorf("unable to encode photos.photos#8dca6aa5: field users element with index %d: %w", idx, err)
tl_photos_photos_gen.go#L171: return fmt.Errorf("can't decode photos.photos#8dca6aa5 to nil")
tl_photos_photos_gen.go#L174: return fmt.Errorf("unable to decode photos.photos#8dca6aa5: %w", err)
tl_photos_photos_gen.go#L182: return fmt.Errorf("can't decode photos.photos#8dca6aa5 to nil")
tl_photos_photos_gen.go#L187: return fmt.Errorf("unable to decode photos.photos#8dca6aa5: field photos: %w", err)
tl_photos_photos_gen.go#L192: return fmt.Errorf("unable to decode photos.photos#8dca6aa5: field photos: %w", err)
tl_photos_photos_gen.go#L200: return fmt.Errorf("unable to decode photos.photos#8dca6aa5: field users: %w", err)
tl_photos_photos_gen.go#L205: return fmt.Errorf("unable to decode photos.photos#8dca6aa5: field users: %w", err)
tl_photos_photos_gen.go#L321: return fmt.Errorf("can't encode photos.photosSlice#15051f54 as nil")
tl_photos_photos_gen.go#L330: return fmt.Errorf("can't encode photos.photosSlice#15051f54 as nil")
tl_photos_photos_gen.go#L336: return fmt.Errorf("unable to encode photos.photosSlice#15051f54: field photos element with index %d is nil", idx)
tl_photos_photos_gen.go#L339: return fmt.Errorf("unable to encode photos.photosSlice#15051f54: field photos element with index %d: %w", idx, err)
tl_photos_photos_gen.go#L345: return fmt.Errorf("unable to encode photos.photosSlice#15051f54: field users element with index %d is nil", idx)
tl_photos_photos_gen.go#L348: return fmt.Errorf("unable to encode photos.photosSlice#15051f54: field users element with index %d: %w", idx, err)
tl_photos_photos_gen.go#L382: return fmt.Errorf("can't decode photos.photosSlice#15051f54 to nil")
tl_photos_photos_gen.go#L385: return fmt.Errorf("unable to decode photos.photosSlice#15051f54: %w", err)
tl_photos_photos_gen.go#L393: return fmt.Errorf("can't decode photos.photosSlice#15051f54 to nil")
tl_photos_photos_gen.go#L398: return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field count: %w", err)
tl_photos_photos_gen.go#L405: return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field photos: %w", err)
tl_photos_photos_gen.go#L410: return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field photos: %w", err)
tl_photos_photos_gen.go#L418: return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field users: %w", err)
tl_photos_photos_gen.go#L423: return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field users: %w", err)
tl_photos_photos_gen.go#L497: return nil, fmt.Errorf("unable to decode PhotosPhotosClass: %w", err)
tl_photos_photos_gen.go#L504: return nil, fmt.Errorf("unable to decode PhotosPhotosClass: %w", err)
tl_photos_photos_gen.go#L508: return nil, fmt.Errorf("unable to decode PhotosPhotosClass: %w", bin.NewUnexpectedID(id))
tl_photos_photos_gen.go#L520: return fmt.Errorf("unable to decode PhotosPhotosBox to nil")
tl_photos_photos_gen.go#L524: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_photos_photos_gen.go#L533: return fmt.Errorf("unable to encode PhotosPhotosClass as nil")
tl_photos_update_profile_photo_gen.go#L105: return fmt.Errorf("can't encode photos.updateProfilePhoto#72d4742c as nil")
tl_photos_update_profile_photo_gen.go#L114: return fmt.Errorf("can't encode photos.updateProfilePhoto#72d4742c as nil")
tl_photos_update_profile_photo_gen.go#L117: return fmt.Errorf("unable to encode photos.updateProfilePhoto#72d4742c: field id is nil")
tl_photos_update_profile_photo_gen.go#L120: return fmt.Errorf("unable to encode photos.updateProfilePhoto#72d4742c: field id: %w", err)
tl_photos_update_profile_photo_gen.go#L138: return fmt.Errorf("can't decode photos.updateProfilePhoto#72d4742c to nil")
tl_photos_update_profile_photo_gen.go#L141: return fmt.Errorf("unable to decode photos.updateProfilePhoto#72d4742c: %w", err)
tl_photos_update_profile_photo_gen.go#L149: return fmt.Errorf("can't decode photos.updateProfilePhoto#72d4742c to nil")
tl_photos_update_profile_photo_gen.go#L154: return fmt.Errorf("unable to decode photos.updateProfilePhoto#72d4742c: field id: %w", err)
tl_photos_upload_profile_photo_gen.go#L160: return fmt.Errorf("can't encode photos.uploadProfilePhoto#89f30f69 as nil")
tl_photos_upload_profile_photo_gen.go#L169: return fmt.Errorf("can't encode photos.uploadProfilePhoto#89f30f69 as nil")
tl_photos_upload_profile_photo_gen.go#L181: return fmt.Errorf("unable to encode photos.uploadProfilePhoto#89f30f69: field flags: %w", err)
tl_photos_upload_profile_photo_gen.go#L185: return fmt.Errorf("unable to encode photos.uploadProfilePhoto#89f30f69: field file is nil")
tl_photos_upload_profile_photo_gen.go#L188: return fmt.Errorf("unable to encode photos.uploadProfilePhoto#89f30f69: field file: %w", err)
tl_photos_upload_profile_photo_gen.go#L193: return fmt.Errorf("unable to encode photos.uploadProfilePhoto#89f30f69: field video is nil")
tl_photos_upload_profile_photo_gen.go#L196: return fmt.Errorf("unable to encode photos.uploadProfilePhoto#89f30f69: field video: %w", err)
tl_photos_upload_profile_photo_gen.go#L253: return fmt.Errorf("can't decode photos.uploadProfilePhoto#89f30f69 to nil")
tl_photos_upload_profile_photo_gen.go#L256: return fmt.Errorf("unable to decode photos.uploadProfilePhoto#89f30f69: %w", err)
tl_photos_upload_profile_photo_gen.go#L264: return fmt.Errorf("can't decode photos.uploadProfilePhoto#89f30f69 to nil")
tl_photos_upload_profile_photo_gen.go#L268: return fmt.Errorf("unable to decode photos.uploadProfilePhoto#89f30f69: field flags: %w", err)
tl_photos_upload_profile_photo_gen.go#L274: return fmt.Errorf("unable to decode photos.uploadProfilePhoto#89f30f69: field file: %w", err)
tl_photos_upload_profile_photo_gen.go#L281: return fmt.Errorf("unable to decode photos.uploadProfilePhoto#89f30f69: field video: %w", err)
tl_photos_upload_profile_photo_gen.go#L288: return fmt.Errorf("unable to decode photos.uploadProfilePhoto#89f30f69: field video_start_ts: %w", err)
tl_poll_answer_gen.go#L119: return fmt.Errorf("can't encode pollAnswer#6ca9c2e9 as nil")
tl_poll_answer_gen.go#L128: return fmt.Errorf("can't encode pollAnswer#6ca9c2e9 as nil")
tl_poll_answer_gen.go#L148: return fmt.Errorf("can't decode pollAnswer#6ca9c2e9 to nil")
tl_poll_answer_gen.go#L151: return fmt.Errorf("unable to decode pollAnswer#6ca9c2e9: %w", err)
tl_poll_answer_gen.go#L159: return fmt.Errorf("can't decode pollAnswer#6ca9c2e9 to nil")
tl_poll_answer_gen.go#L164: return fmt.Errorf("unable to decode pollAnswer#6ca9c2e9: field text: %w", err)
tl_poll_answer_gen.go#L171: return fmt.Errorf("unable to decode pollAnswer#6ca9c2e9: field option: %w", err)
tl_poll_answer_voters_gen.go#L151: return fmt.Errorf("can't encode pollAnswerVoters#3b6ddad2 as nil")
tl_poll_answer_voters_gen.go#L160: return fmt.Errorf("can't encode pollAnswerVoters#3b6ddad2 as nil")
tl_poll_answer_voters_gen.go#L169: return fmt.Errorf("unable to encode pollAnswerVoters#3b6ddad2: field flags: %w", err)
tl_poll_answer_voters_gen.go#L221: return fmt.Errorf("can't decode pollAnswerVoters#3b6ddad2 to nil")
tl_poll_answer_voters_gen.go#L224: return fmt.Errorf("unable to decode pollAnswerVoters#3b6ddad2: %w", err)
tl_poll_answer_voters_gen.go#L232: return fmt.Errorf("can't decode pollAnswerVoters#3b6ddad2 to nil")
tl_poll_answer_voters_gen.go#L236: return fmt.Errorf("unable to decode pollAnswerVoters#3b6ddad2: field flags: %w", err)
tl_poll_answer_voters_gen.go#L244: return fmt.Errorf("unable to decode pollAnswerVoters#3b6ddad2: field option: %w", err)
tl_poll_answer_voters_gen.go#L251: return fmt.Errorf("unable to decode pollAnswerVoters#3b6ddad2: field voters: %w", err)
tl_poll_gen.go#L224: return fmt.Errorf("can't encode poll#86e18161 as nil")
tl_poll_gen.go#L233: return fmt.Errorf("can't encode poll#86e18161 as nil")
tl_poll_gen.go#L255: return fmt.Errorf("unable to encode poll#86e18161: field flags: %w", err)
tl_poll_gen.go#L261: return fmt.Errorf("unable to encode poll#86e18161: field answers element with index %d: %w", idx, err)
tl_poll_gen.go#L385: return fmt.Errorf("can't decode poll#86e18161 to nil")
tl_poll_gen.go#L388: return fmt.Errorf("unable to decode poll#86e18161: %w", err)
tl_poll_gen.go#L396: return fmt.Errorf("can't decode poll#86e18161 to nil")
tl_poll_gen.go#L401: return fmt.Errorf("unable to decode poll#86e18161: field id: %w", err)
tl_poll_gen.go#L407: return fmt.Errorf("unable to decode poll#86e18161: field flags: %w", err)
tl_poll_gen.go#L417: return fmt.Errorf("unable to decode poll#86e18161: field question: %w", err)
tl_poll_gen.go#L424: return fmt.Errorf("unable to decode poll#86e18161: field answers: %w", err)
tl_poll_gen.go#L429: return fmt.Errorf("unable to decode poll#86e18161: field answers: %w", err)
tl_poll_gen.go#L437: return fmt.Errorf("unable to decode poll#86e18161: field close_period: %w", err)
tl_poll_gen.go#L444: return fmt.Errorf("unable to decode poll#86e18161: field close_date: %w", err)
tl_poll_results_gen.go#L208: return fmt.Errorf("can't encode pollResults#badcc1a3 as nil")
tl_poll_results_gen.go#L217: return fmt.Errorf("can't encode pollResults#badcc1a3 as nil")
tl_poll_results_gen.go#L238: return fmt.Errorf("unable to encode pollResults#badcc1a3: field flags: %w", err)
tl_poll_results_gen.go#L244: return fmt.Errorf("unable to encode pollResults#badcc1a3: field results element with index %d: %w", idx, err)
tl_poll_results_gen.go#L264: return fmt.Errorf("unable to encode pollResults#badcc1a3: field solution_entities element with index %d is nil", idx)
tl_poll_results_gen.go#L267: return fmt.Errorf("unable to encode pollResults#badcc1a3: field solution_entities element with index %d: %w", idx, err)
tl_poll_results_gen.go#L376: return fmt.Errorf("can't decode pollResults#badcc1a3 to nil")
tl_poll_results_gen.go#L379: return fmt.Errorf("unable to decode pollResults#badcc1a3: %w", err)
tl_poll_results_gen.go#L387: return fmt.Errorf("can't decode pollResults#badcc1a3 to nil")
tl_poll_results_gen.go#L391: return fmt.Errorf("unable to decode pollResults#badcc1a3: field flags: %w", err)
tl_poll_results_gen.go#L398: return fmt.Errorf("unable to decode pollResults#badcc1a3: field results: %w", err)
tl_poll_results_gen.go#L403: return fmt.Errorf("unable to decode pollResults#badcc1a3: field results: %w", err)
tl_poll_results_gen.go#L411: return fmt.Errorf("unable to decode pollResults#badcc1a3: field total_voters: %w", err)
tl_poll_results_gen.go#L418: return fmt.Errorf("unable to decode pollResults#badcc1a3: field recent_voters: %w", err)
tl_poll_results_gen.go#L423: return fmt.Errorf("unable to decode pollResults#badcc1a3: field recent_voters: %w", err)
tl_poll_results_gen.go#L431: return fmt.Errorf("unable to decode pollResults#badcc1a3: field solution: %w", err)
tl_poll_results_gen.go#L438: return fmt.Errorf("unable to decode pollResults#badcc1a3: field solution_entities: %w", err)
tl_poll_results_gen.go#L443: return fmt.Errorf("unable to decode pollResults#badcc1a3: field solution_entities: %w", err)
tl_popular_contact_gen.go#L116: return fmt.Errorf("can't encode popularContact#5ce14175 as nil")
tl_popular_contact_gen.go#L125: return fmt.Errorf("can't encode popularContact#5ce14175 as nil")
tl_popular_contact_gen.go#L145: return fmt.Errorf("can't decode popularContact#5ce14175 to nil")
tl_popular_contact_gen.go#L148: return fmt.Errorf("unable to decode popularContact#5ce14175: %w", err)
tl_popular_contact_gen.go#L156: return fmt.Errorf("can't decode popularContact#5ce14175 to nil")
tl_popular_contact_gen.go#L161: return fmt.Errorf("unable to decode popularContact#5ce14175: field client_id: %w", err)
tl_popular_contact_gen.go#L168: return fmt.Errorf("unable to decode popularContact#5ce14175: field importers: %w", err)
tl_post_address_gen.go#L160: return fmt.Errorf("can't encode postAddress#1e8caaeb as nil")
tl_post_address_gen.go#L169: return fmt.Errorf("can't encode postAddress#1e8caaeb as nil")
tl_post_address_gen.go#L213: return fmt.Errorf("can't decode postAddress#1e8caaeb to nil")
tl_post_address_gen.go#L216: return fmt.Errorf("unable to decode postAddress#1e8caaeb: %w", err)
tl_post_address_gen.go#L224: return fmt.Errorf("can't decode postAddress#1e8caaeb to nil")
tl_post_address_gen.go#L229: return fmt.Errorf("unable to decode postAddress#1e8caaeb: field street_line1: %w", err)
tl_post_address_gen.go#L236: return fmt.Errorf("unable to decode postAddress#1e8caaeb: field street_line2: %w", err)
tl_post_address_gen.go#L243: return fmt.Errorf("unable to decode postAddress#1e8caaeb: field city: %w", err)
tl_post_address_gen.go#L250: return fmt.Errorf("unable to decode postAddress#1e8caaeb: field state: %w", err)
tl_post_address_gen.go#L257: return fmt.Errorf("unable to decode postAddress#1e8caaeb: field country_iso2: %w", err)
tl_post_address_gen.go#L264: return fmt.Errorf("unable to decode postAddress#1e8caaeb: field post_code: %w", err)
tl_privacy_key_gen.go#L88: return fmt.Errorf("can't encode privacyKeyStatusTimestamp#bc2eab30 as nil")
tl_privacy_key_gen.go#L97: return fmt.Errorf("can't encode privacyKeyStatusTimestamp#bc2eab30 as nil")
tl_privacy_key_gen.go#L105: return fmt.Errorf("can't decode privacyKeyStatusTimestamp#bc2eab30 to nil")
tl_privacy_key_gen.go#L108: return fmt.Errorf("unable to decode privacyKeyStatusTimestamp#bc2eab30: %w", err)
tl_privacy_key_gen.go#L116: return fmt.Errorf("can't decode privacyKeyStatusTimestamp#bc2eab30 to nil")
tl_privacy_key_gen.go#L190: return fmt.Errorf("can't encode privacyKeyChatInvite#500e6dfa as nil")
tl_privacy_key_gen.go#L199: return fmt.Errorf("can't encode privacyKeyChatInvite#500e6dfa as nil")
tl_privacy_key_gen.go#L207: return fmt.Errorf("can't decode privacyKeyChatInvite#500e6dfa to nil")
tl_privacy_key_gen.go#L210: return fmt.Errorf("unable to decode privacyKeyChatInvite#500e6dfa: %w", err)
tl_privacy_key_gen.go#L218: return fmt.Errorf("can't decode privacyKeyChatInvite#500e6dfa to nil")
tl_privacy_key_gen.go#L292: return fmt.Errorf("can't encode privacyKeyPhoneCall#3d662b7b as nil")
tl_privacy_key_gen.go#L301: return fmt.Errorf("can't encode privacyKeyPhoneCall#3d662b7b as nil")
tl_privacy_key_gen.go#L309: return fmt.Errorf("can't decode privacyKeyPhoneCall#3d662b7b to nil")
tl_privacy_key_gen.go#L312: return fmt.Errorf("unable to decode privacyKeyPhoneCall#3d662b7b: %w", err)
tl_privacy_key_gen.go#L320: return fmt.Errorf("can't decode privacyKeyPhoneCall#3d662b7b to nil")
tl_privacy_key_gen.go#L394: return fmt.Errorf("can't encode privacyKeyPhoneP2P#39491cc8 as nil")
tl_privacy_key_gen.go#L403: return fmt.Errorf("can't encode privacyKeyPhoneP2P#39491cc8 as nil")
tl_privacy_key_gen.go#L411: return fmt.Errorf("can't decode privacyKeyPhoneP2P#39491cc8 to nil")
tl_privacy_key_gen.go#L414: return fmt.Errorf("unable to decode privacyKeyPhoneP2P#39491cc8: %w", err)
tl_privacy_key_gen.go#L422: return fmt.Errorf("can't decode privacyKeyPhoneP2P#39491cc8 to nil")
tl_privacy_key_gen.go#L499: return fmt.Errorf("can't encode privacyKeyForwards#69ec56a3 as nil")
tl_privacy_key_gen.go#L508: return fmt.Errorf("can't encode privacyKeyForwards#69ec56a3 as nil")
tl_privacy_key_gen.go#L516: return fmt.Errorf("can't decode privacyKeyForwards#69ec56a3 to nil")
tl_privacy_key_gen.go#L519: return fmt.Errorf("unable to decode privacyKeyForwards#69ec56a3: %w", err)
tl_privacy_key_gen.go#L527: return fmt.Errorf("can't decode privacyKeyForwards#69ec56a3 to nil")
tl_privacy_key_gen.go#L601: return fmt.Errorf("can't encode privacyKeyProfilePhoto#96151fed as nil")
tl_privacy_key_gen.go#L610: return fmt.Errorf("can't encode privacyKeyProfilePhoto#96151fed as nil")
tl_privacy_key_gen.go#L618: return fmt.Errorf("can't decode privacyKeyProfilePhoto#96151fed to nil")
tl_privacy_key_gen.go#L621: return fmt.Errorf("unable to decode privacyKeyProfilePhoto#96151fed: %w", err)
tl_privacy_key_gen.go#L629: return fmt.Errorf("can't decode privacyKeyProfilePhoto#96151fed to nil")
tl_privacy_key_gen.go#L703: return fmt.Errorf("can't encode privacyKeyPhoneNumber#d19ae46d as nil")
tl_privacy_key_gen.go#L712: return fmt.Errorf("can't encode privacyKeyPhoneNumber#d19ae46d as nil")
tl_privacy_key_gen.go#L720: return fmt.Errorf("can't decode privacyKeyPhoneNumber#d19ae46d to nil")
tl_privacy_key_gen.go#L723: return fmt.Errorf("unable to decode privacyKeyPhoneNumber#d19ae46d: %w", err)
tl_privacy_key_gen.go#L731: return fmt.Errorf("can't decode privacyKeyPhoneNumber#d19ae46d to nil")
tl_privacy_key_gen.go#L805: return fmt.Errorf("can't encode privacyKeyAddedByPhone#42ffd42b as nil")
tl_privacy_key_gen.go#L814: return fmt.Errorf("can't encode privacyKeyAddedByPhone#42ffd42b as nil")
tl_privacy_key_gen.go#L822: return fmt.Errorf("can't decode privacyKeyAddedByPhone#42ffd42b to nil")
tl_privacy_key_gen.go#L825: return fmt.Errorf("unable to decode privacyKeyAddedByPhone#42ffd42b: %w", err)
tl_privacy_key_gen.go#L833: return fmt.Errorf("can't decode privacyKeyAddedByPhone#42ffd42b to nil")
tl_privacy_key_gen.go#L901: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
tl_privacy_key_gen.go#L908: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
tl_privacy_key_gen.go#L915: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
tl_privacy_key_gen.go#L922: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
tl_privacy_key_gen.go#L929: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
tl_privacy_key_gen.go#L936: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
tl_privacy_key_gen.go#L943: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
tl_privacy_key_gen.go#L950: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
tl_privacy_key_gen.go#L954: return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", bin.NewUnexpectedID(id))
tl_privacy_key_gen.go#L966: return fmt.Errorf("unable to decode PrivacyKeyBox to nil")
tl_privacy_key_gen.go#L970: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_privacy_key_gen.go#L979: return fmt.Errorf("unable to encode PrivacyKeyClass as nil")
tl_privacy_rule_gen.go#L88: return fmt.Errorf("can't encode privacyValueAllowContacts#fffe1bac as nil")
tl_privacy_rule_gen.go#L97: return fmt.Errorf("can't encode privacyValueAllowContacts#fffe1bac as nil")
tl_privacy_rule_gen.go#L105: return fmt.Errorf("can't decode privacyValueAllowContacts#fffe1bac to nil")
tl_privacy_rule_gen.go#L108: return fmt.Errorf("unable to decode privacyValueAllowContacts#fffe1bac: %w", err)
tl_privacy_rule_gen.go#L116: return fmt.Errorf("can't decode privacyValueAllowContacts#fffe1bac to nil")
tl_privacy_rule_gen.go#L190: return fmt.Errorf("can't encode privacyValueAllowAll#65427b82 as nil")
tl_privacy_rule_gen.go#L199: return fmt.Errorf("can't encode privacyValueAllowAll#65427b82 as nil")
tl_privacy_rule_gen.go#L207: return fmt.Errorf("can't decode privacyValueAllowAll#65427b82 to nil")
tl_privacy_rule_gen.go#L210: return fmt.Errorf("unable to decode privacyValueAllowAll#65427b82: %w", err)
tl_privacy_rule_gen.go#L218: return fmt.Errorf("can't decode privacyValueAllowAll#65427b82 to nil")
tl_privacy_rule_gen.go#L309: return fmt.Errorf("can't encode privacyValueAllowUsers#4d5bbe0c as nil")
tl_privacy_rule_gen.go#L318: return fmt.Errorf("can't encode privacyValueAllowUsers#4d5bbe0c as nil")
tl_privacy_rule_gen.go#L335: return fmt.Errorf("can't decode privacyValueAllowUsers#4d5bbe0c to nil")
tl_privacy_rule_gen.go#L338: return fmt.Errorf("unable to decode privacyValueAllowUsers#4d5bbe0c: %w", err)
tl_privacy_rule_gen.go#L346: return fmt.Errorf("can't decode privacyValueAllowUsers#4d5bbe0c to nil")
tl_privacy_rule_gen.go#L351: return fmt.Errorf("unable to decode privacyValueAllowUsers#4d5bbe0c: field users: %w", err)
tl_privacy_rule_gen.go#L356: return fmt.Errorf("unable to decode privacyValueAllowUsers#4d5bbe0c: field users: %w", err)
tl_privacy_rule_gen.go#L433: return fmt.Errorf("can't encode privacyValueDisallowContacts#f888fa1a as nil")
tl_privacy_rule_gen.go#L442: return fmt.Errorf("can't encode privacyValueDisallowContacts#f888fa1a as nil")
tl_privacy_rule_gen.go#L450: return fmt.Errorf("can't decode privacyValueDisallowContacts#f888fa1a to nil")
tl_privacy_rule_gen.go#L453: return fmt.Errorf("unable to decode privacyValueDisallowContacts#f888fa1a: %w", err)
tl_privacy_rule_gen.go#L461: return fmt.Errorf("can't decode privacyValueDisallowContacts#f888fa1a to nil")
tl_privacy_rule_gen.go#L535: return fmt.Errorf("can't encode privacyValueDisallowAll#8b73e763 as nil")
tl_privacy_rule_gen.go#L544: return fmt.Errorf("can't encode privacyValueDisallowAll#8b73e763 as nil")
tl_privacy_rule_gen.go#L552: return fmt.Errorf("can't decode privacyValueDisallowAll#8b73e763 to nil")
tl_privacy_rule_gen.go#L555: return fmt.Errorf("unable to decode privacyValueDisallowAll#8b73e763: %w", err)
tl_privacy_rule_gen.go#L563: return fmt.Errorf("can't decode privacyValueDisallowAll#8b73e763 to nil")
tl_privacy_rule_gen.go#L654: return fmt.Errorf("can't encode privacyValueDisallowUsers#c7f49b7 as nil")
tl_privacy_rule_gen.go#L663: return fmt.Errorf("can't encode privacyValueDisallowUsers#c7f49b7 as nil")
tl_privacy_rule_gen.go#L680: return fmt.Errorf("can't decode privacyValueDisallowUsers#c7f49b7 to nil")
tl_privacy_rule_gen.go#L683: return fmt.Errorf("unable to decode privacyValueDisallowUsers#c7f49b7: %w", err)
tl_privacy_rule_gen.go#L691: return fmt.Errorf("can't decode privacyValueDisallowUsers#c7f49b7 to nil")
tl_privacy_rule_gen.go#L696: return fmt.Errorf("unable to decode privacyValueDisallowUsers#c7f49b7: field users: %w", err)
tl_privacy_rule_gen.go#L701: return fmt.Errorf("unable to decode privacyValueDisallowUsers#c7f49b7: field users: %w", err)
tl_privacy_rule_gen.go#L795: return fmt.Errorf("can't encode privacyValueAllowChatParticipants#18be796b as nil")
tl_privacy_rule_gen.go#L804: return fmt.Errorf("can't encode privacyValueAllowChatParticipants#18be796b as nil")
tl_privacy_rule_gen.go#L821: return fmt.Errorf("can't decode privacyValueAllowChatParticipants#18be796b to nil")
tl_privacy_rule_gen.go#L824: return fmt.Errorf("unable to decode privacyValueAllowChatParticipants#18be796b: %w", err)
tl_privacy_rule_gen.go#L832: return fmt.Errorf("can't decode privacyValueAllowChatParticipants#18be796b to nil")
tl_privacy_rule_gen.go#L837: return fmt.Errorf("unable to decode privacyValueAllowChatParticipants#18be796b: field chats: %w", err)
tl_privacy_rule_gen.go#L842: return fmt.Errorf("unable to decode privacyValueAllowChatParticipants#18be796b: field chats: %w", err)
tl_privacy_rule_gen.go#L936: return fmt.Errorf("can't encode privacyValueDisallowChatParticipants#acae0690 as nil")
tl_privacy_rule_gen.go#L945: return fmt.Errorf("can't encode privacyValueDisallowChatParticipants#acae0690 as nil")
tl_privacy_rule_gen.go#L962: return fmt.Errorf("can't decode privacyValueDisallowChatParticipants#acae0690 to nil")
tl_privacy_rule_gen.go#L965: return fmt.Errorf("unable to decode privacyValueDisallowChatParticipants#acae0690: %w", err)
tl_privacy_rule_gen.go#L973: return fmt.Errorf("can't decode privacyValueDisallowChatParticipants#acae0690 to nil")
tl_privacy_rule_gen.go#L978: return fmt.Errorf("unable to decode privacyValueDisallowChatParticipants#acae0690: field chats: %w", err)
tl_privacy_rule_gen.go#L983: return fmt.Errorf("unable to decode privacyValueDisallowChatParticipants#acae0690: field chats: %w", err)
tl_privacy_rule_gen.go#L1070: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
tl_privacy_rule_gen.go#L1077: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
tl_privacy_rule_gen.go#L1084: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
tl_privacy_rule_gen.go#L1091: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
tl_privacy_rule_gen.go#L1098: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
tl_privacy_rule_gen.go#L1105: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
tl_privacy_rule_gen.go#L1112: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
tl_privacy_rule_gen.go#L1119: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
tl_privacy_rule_gen.go#L1123: return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", bin.NewUnexpectedID(id))
tl_privacy_rule_gen.go#L1135: return fmt.Errorf("unable to decode PrivacyRuleBox to nil")
tl_privacy_rule_gen.go#L1139: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_privacy_rule_gen.go#L1148: return fmt.Errorf("unable to encode PrivacyRuleClass as nil")
tl_received_notify_message_gen.go#L116: return fmt.Errorf("can't encode receivedNotifyMessage#a384b779 as nil")
tl_received_notify_message_gen.go#L125: return fmt.Errorf("can't encode receivedNotifyMessage#a384b779 as nil")
tl_received_notify_message_gen.go#L145: return fmt.Errorf("can't decode receivedNotifyMessage#a384b779 to nil")
tl_received_notify_message_gen.go#L148: return fmt.Errorf("unable to decode receivedNotifyMessage#a384b779: %w", err)
tl_received_notify_message_gen.go#L156: return fmt.Errorf("can't decode receivedNotifyMessage#a384b779 to nil")
tl_received_notify_message_gen.go#L161: return fmt.Errorf("unable to decode receivedNotifyMessage#a384b779: field id: %w", err)
tl_received_notify_message_gen.go#L168: return fmt.Errorf("unable to decode receivedNotifyMessage#a384b779: field flags: %w", err)
tl_received_notify_message_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_received_notify_message_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_received_notify_message_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_received_notify_message_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_received_notify_message_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_received_notify_message_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_received_notify_message_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_recent_me_url_gen.go#L105: return fmt.Errorf("can't encode recentMeUrlUnknown#46e1d13d as nil")
tl_recent_me_url_gen.go#L114: return fmt.Errorf("can't encode recentMeUrlUnknown#46e1d13d as nil")
tl_recent_me_url_gen.go#L128: return fmt.Errorf("can't decode recentMeUrlUnknown#46e1d13d to nil")
tl_recent_me_url_gen.go#L131: return fmt.Errorf("unable to decode recentMeUrlUnknown#46e1d13d: %w", err)
tl_recent_me_url_gen.go#L139: return fmt.Errorf("can't decode recentMeUrlUnknown#46e1d13d to nil")
tl_recent_me_url_gen.go#L144: return fmt.Errorf("unable to decode recentMeUrlUnknown#46e1d13d: field url: %w", err)
tl_recent_me_url_gen.go#L248: return fmt.Errorf("can't encode recentMeUrlUser#8dbc3336 as nil")
tl_recent_me_url_gen.go#L257: return fmt.Errorf("can't encode recentMeUrlUser#8dbc3336 as nil")
tl_recent_me_url_gen.go#L277: return fmt.Errorf("can't decode recentMeUrlUser#8dbc3336 to nil")
tl_recent_me_url_gen.go#L280: return fmt.Errorf("unable to decode recentMeUrlUser#8dbc3336: %w", err)
tl_recent_me_url_gen.go#L288: return fmt.Errorf("can't decode recentMeUrlUser#8dbc3336 to nil")
tl_recent_me_url_gen.go#L293: return fmt.Errorf("unable to decode recentMeUrlUser#8dbc3336: field url: %w", err)
tl_recent_me_url_gen.go#L300: return fmt.Errorf("unable to decode recentMeUrlUser#8dbc3336: field user_id: %w", err)
tl_recent_me_url_gen.go#L404: return fmt.Errorf("can't encode recentMeUrlChat#a01b22f9 as nil")
tl_recent_me_url_gen.go#L413: return fmt.Errorf("can't encode recentMeUrlChat#a01b22f9 as nil")
tl_recent_me_url_gen.go#L433: return fmt.Errorf("can't decode recentMeUrlChat#a01b22f9 to nil")
tl_recent_me_url_gen.go#L436: return fmt.Errorf("unable to decode recentMeUrlChat#a01b22f9: %w", err)
tl_recent_me_url_gen.go#L444: return fmt.Errorf("can't decode recentMeUrlChat#a01b22f9 to nil")
tl_recent_me_url_gen.go#L449: return fmt.Errorf("unable to decode recentMeUrlChat#a01b22f9: field url: %w", err)
tl_recent_me_url_gen.go#L456: return fmt.Errorf("unable to decode recentMeUrlChat#a01b22f9: field chat_id: %w", err)
tl_recent_me_url_gen.go#L560: return fmt.Errorf("can't encode recentMeUrlChatInvite#eb49081d as nil")
tl_recent_me_url_gen.go#L569: return fmt.Errorf("can't encode recentMeUrlChatInvite#eb49081d as nil")
tl_recent_me_url_gen.go#L573: return fmt.Errorf("unable to encode recentMeUrlChatInvite#eb49081d: field chat_invite is nil")
tl_recent_me_url_gen.go#L576: return fmt.Errorf("unable to encode recentMeUrlChatInvite#eb49081d: field chat_invite: %w", err)
tl_recent_me_url_gen.go#L594: return fmt.Errorf("can't decode recentMeUrlChatInvite#eb49081d to nil")
tl_recent_me_url_gen.go#L597: return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: %w", err)
tl_recent_me_url_gen.go#L605: return fmt.Errorf("can't decode recentMeUrlChatInvite#eb49081d to nil")
tl_recent_me_url_gen.go#L610: return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: field url: %w", err)
tl_recent_me_url_gen.go#L617: return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: field chat_invite: %w", err)
tl_recent_me_url_gen.go#L721: return fmt.Errorf("can't encode recentMeUrlStickerSet#bc0a57dc as nil")
tl_recent_me_url_gen.go#L730: return fmt.Errorf("can't encode recentMeUrlStickerSet#bc0a57dc as nil")
tl_recent_me_url_gen.go#L734: return fmt.Errorf("unable to encode recentMeUrlStickerSet#bc0a57dc: field set is nil")
tl_recent_me_url_gen.go#L737: return fmt.Errorf("unable to encode recentMeUrlStickerSet#bc0a57dc: field set: %w", err)
tl_recent_me_url_gen.go#L755: return fmt.Errorf("can't decode recentMeUrlStickerSet#bc0a57dc to nil")
tl_recent_me_url_gen.go#L758: return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: %w", err)
tl_recent_me_url_gen.go#L766: return fmt.Errorf("can't decode recentMeUrlStickerSet#bc0a57dc to nil")
tl_recent_me_url_gen.go#L771: return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: field url: %w", err)
tl_recent_me_url_gen.go#L778: return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: field set: %w", err)
tl_recent_me_url_gen.go#L848: return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
tl_recent_me_url_gen.go#L855: return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
tl_recent_me_url_gen.go#L862: return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
tl_recent_me_url_gen.go#L869: return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
tl_recent_me_url_gen.go#L876: return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
tl_recent_me_url_gen.go#L880: return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", bin.NewUnexpectedID(id))
tl_recent_me_url_gen.go#L892: return fmt.Errorf("unable to decode RecentMeURLBox to nil")
tl_recent_me_url_gen.go#L896: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_recent_me_url_gen.go#L905: return fmt.Errorf("unable to encode RecentMeURLClass as nil")
tl_reply_markup_gen.go#L119: return fmt.Errorf("can't encode replyKeyboardHide#a03e5b85 as nil")
tl_reply_markup_gen.go#L128: return fmt.Errorf("can't encode replyKeyboardHide#a03e5b85 as nil")
tl_reply_markup_gen.go#L134: return fmt.Errorf("unable to encode replyKeyboardHide#a03e5b85: field flags: %w", err)
tl_reply_markup_gen.go#L158: return fmt.Errorf("can't decode replyKeyboardHide#a03e5b85 to nil")
tl_reply_markup_gen.go#L161: return fmt.Errorf("unable to decode replyKeyboardHide#a03e5b85: %w", err)
tl_reply_markup_gen.go#L169: return fmt.Errorf("can't decode replyKeyboardHide#a03e5b85 to nil")
tl_reply_markup_gen.go#L173: return fmt.Errorf("unable to decode replyKeyboardHide#a03e5b85: field flags: %w", err)
tl_reply_markup_gen.go#L294: return fmt.Errorf("can't encode replyKeyboardForceReply#f4108aa0 as nil")
tl_reply_markup_gen.go#L303: return fmt.Errorf("can't encode replyKeyboardForceReply#f4108aa0 as nil")
tl_reply_markup_gen.go#L312: return fmt.Errorf("unable to encode replyKeyboardForceReply#f4108aa0: field flags: %w", err)
tl_reply_markup_gen.go#L352: return fmt.Errorf("can't decode replyKeyboardForceReply#f4108aa0 to nil")
tl_reply_markup_gen.go#L355: return fmt.Errorf("unable to decode replyKeyboardForceReply#f4108aa0: %w", err)
tl_reply_markup_gen.go#L363: return fmt.Errorf("can't decode replyKeyboardForceReply#f4108aa0 to nil")
tl_reply_markup_gen.go#L367: return fmt.Errorf("unable to decode replyKeyboardForceReply#f4108aa0: field flags: %w", err)
tl_reply_markup_gen.go#L514: return fmt.Errorf("can't encode replyKeyboardMarkup#3502758c as nil")
tl_reply_markup_gen.go#L523: return fmt.Errorf("can't encode replyKeyboardMarkup#3502758c as nil")
tl_reply_markup_gen.go#L535: return fmt.Errorf("unable to encode replyKeyboardMarkup#3502758c: field flags: %w", err)
tl_reply_markup_gen.go#L540: return fmt.Errorf("unable to encode replyKeyboardMarkup#3502758c: field rows element with index %d: %w", idx, err)
tl_reply_markup_gen.go#L602: return fmt.Errorf("can't decode replyKeyboardMarkup#3502758c to nil")
tl_reply_markup_gen.go#L605: return fmt.Errorf("unable to decode replyKeyboardMarkup#3502758c: %w", err)
tl_reply_markup_gen.go#L613: return fmt.Errorf("can't decode replyKeyboardMarkup#3502758c to nil")
tl_reply_markup_gen.go#L617: return fmt.Errorf("unable to decode replyKeyboardMarkup#3502758c: field flags: %w", err)
tl_reply_markup_gen.go#L626: return fmt.Errorf("unable to decode replyKeyboardMarkup#3502758c: field rows: %w", err)
tl_reply_markup_gen.go#L631: return fmt.Errorf("unable to decode replyKeyboardMarkup#3502758c: field rows: %w", err)
tl_reply_markup_gen.go#L725: return fmt.Errorf("can't encode replyInlineMarkup#48a30254 as nil")
tl_reply_markup_gen.go#L734: return fmt.Errorf("can't encode replyInlineMarkup#48a30254 as nil")
tl_reply_markup_gen.go#L739: return fmt.Errorf("unable to encode replyInlineMarkup#48a30254: field rows element with index %d: %w", idx, err)
tl_reply_markup_gen.go#L753: return fmt.Errorf("can't decode replyInlineMarkup#48a30254 to nil")
tl_reply_markup_gen.go#L756: return fmt.Errorf("unable to decode replyInlineMarkup#48a30254: %w", err)
tl_reply_markup_gen.go#L764: return fmt.Errorf("can't decode replyInlineMarkup#48a30254 to nil")
tl_reply_markup_gen.go#L769: return fmt.Errorf("unable to decode replyInlineMarkup#48a30254: field rows: %w", err)
tl_reply_markup_gen.go#L774: return fmt.Errorf("unable to decode replyInlineMarkup#48a30254: field rows: %w", err)
tl_reply_markup_gen.go#L841: return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", err)
tl_reply_markup_gen.go#L848: return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", err)
tl_reply_markup_gen.go#L855: return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", err)
tl_reply_markup_gen.go#L862: return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", err)
tl_reply_markup_gen.go#L866: return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", bin.NewUnexpectedID(id))
tl_reply_markup_gen.go#L878: return fmt.Errorf("unable to decode ReplyMarkupBox to nil")
tl_reply_markup_gen.go#L882: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_reply_markup_gen.go#L891: return fmt.Errorf("unable to encode ReplyMarkupClass as nil")
tl_report_reason_gen.go#L88: return fmt.Errorf("can't encode inputReportReasonSpam#58dbcab8 as nil")
tl_report_reason_gen.go#L97: return fmt.Errorf("can't encode inputReportReasonSpam#58dbcab8 as nil")
tl_report_reason_gen.go#L105: return fmt.Errorf("can't decode inputReportReasonSpam#58dbcab8 to nil")
tl_report_reason_gen.go#L108: return fmt.Errorf("unable to decode inputReportReasonSpam#58dbcab8: %w", err)
tl_report_reason_gen.go#L116: return fmt.Errorf("can't decode inputReportReasonSpam#58dbcab8 to nil")
tl_report_reason_gen.go#L190: return fmt.Errorf("can't encode inputReportReasonViolence#1e22c78d as nil")
tl_report_reason_gen.go#L199: return fmt.Errorf("can't encode inputReportReasonViolence#1e22c78d as nil")
tl_report_reason_gen.go#L207: return fmt.Errorf("can't decode inputReportReasonViolence#1e22c78d to nil")
tl_report_reason_gen.go#L210: return fmt.Errorf("unable to decode inputReportReasonViolence#1e22c78d: %w", err)
tl_report_reason_gen.go#L218: return fmt.Errorf("can't decode inputReportReasonViolence#1e22c78d to nil")
tl_report_reason_gen.go#L292: return fmt.Errorf("can't encode inputReportReasonPornography#2e59d922 as nil")
tl_report_reason_gen.go#L301: return fmt.Errorf("can't encode inputReportReasonPornography#2e59d922 as nil")
tl_report_reason_gen.go#L309: return fmt.Errorf("can't decode inputReportReasonPornography#2e59d922 to nil")
tl_report_reason_gen.go#L312: return fmt.Errorf("unable to decode inputReportReasonPornography#2e59d922: %w", err)
tl_report_reason_gen.go#L320: return fmt.Errorf("can't decode inputReportReasonPornography#2e59d922 to nil")
tl_report_reason_gen.go#L394: return fmt.Errorf("can't encode inputReportReasonChildAbuse#adf44ee3 as nil")
tl_report_reason_gen.go#L403: return fmt.Errorf("can't encode inputReportReasonChildAbuse#adf44ee3 as nil")
tl_report_reason_gen.go#L411: return fmt.Errorf("can't decode inputReportReasonChildAbuse#adf44ee3 to nil")
tl_report_reason_gen.go#L414: return fmt.Errorf("unable to decode inputReportReasonChildAbuse#adf44ee3: %w", err)
tl_report_reason_gen.go#L422: return fmt.Errorf("can't decode inputReportReasonChildAbuse#adf44ee3 to nil")
tl_report_reason_gen.go#L496: return fmt.Errorf("can't encode inputReportReasonOther#c1e4a2b1 as nil")
tl_report_reason_gen.go#L505: return fmt.Errorf("can't encode inputReportReasonOther#c1e4a2b1 as nil")
tl_report_reason_gen.go#L513: return fmt.Errorf("can't decode inputReportReasonOther#c1e4a2b1 to nil")
tl_report_reason_gen.go#L516: return fmt.Errorf("unable to decode inputReportReasonOther#c1e4a2b1: %w", err)
tl_report_reason_gen.go#L524: return fmt.Errorf("can't decode inputReportReasonOther#c1e4a2b1 to nil")
tl_report_reason_gen.go#L598: return fmt.Errorf("can't encode inputReportReasonCopyright#9b89f93a as nil")
tl_report_reason_gen.go#L607: return fmt.Errorf("can't encode inputReportReasonCopyright#9b89f93a as nil")
tl_report_reason_gen.go#L615: return fmt.Errorf("can't decode inputReportReasonCopyright#9b89f93a to nil")
tl_report_reason_gen.go#L618: return fmt.Errorf("unable to decode inputReportReasonCopyright#9b89f93a: %w", err)
tl_report_reason_gen.go#L626: return fmt.Errorf("can't decode inputReportReasonCopyright#9b89f93a to nil")
tl_report_reason_gen.go#L700: return fmt.Errorf("can't encode inputReportReasonGeoIrrelevant#dbd4feed as nil")
tl_report_reason_gen.go#L709: return fmt.Errorf("can't encode inputReportReasonGeoIrrelevant#dbd4feed as nil")
tl_report_reason_gen.go#L717: return fmt.Errorf("can't decode inputReportReasonGeoIrrelevant#dbd4feed to nil")
tl_report_reason_gen.go#L720: return fmt.Errorf("unable to decode inputReportReasonGeoIrrelevant#dbd4feed: %w", err)
tl_report_reason_gen.go#L728: return fmt.Errorf("can't decode inputReportReasonGeoIrrelevant#dbd4feed to nil")
tl_report_reason_gen.go#L801: return fmt.Errorf("can't encode inputReportReasonFake#f5ddd6e7 as nil")
tl_report_reason_gen.go#L810: return fmt.Errorf("can't encode inputReportReasonFake#f5ddd6e7 as nil")
tl_report_reason_gen.go#L818: return fmt.Errorf("can't decode inputReportReasonFake#f5ddd6e7 to nil")
tl_report_reason_gen.go#L821: return fmt.Errorf("unable to decode inputReportReasonFake#f5ddd6e7: %w", err)
tl_report_reason_gen.go#L829: return fmt.Errorf("can't decode inputReportReasonFake#f5ddd6e7 to nil")
tl_report_reason_gen.go#L897: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
tl_report_reason_gen.go#L904: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
tl_report_reason_gen.go#L911: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
tl_report_reason_gen.go#L918: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
tl_report_reason_gen.go#L925: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
tl_report_reason_gen.go#L932: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
tl_report_reason_gen.go#L939: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
tl_report_reason_gen.go#L946: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
tl_report_reason_gen.go#L950: return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", bin.NewUnexpectedID(id))
tl_report_reason_gen.go#L962: return fmt.Errorf("unable to decode ReportReasonBox to nil")
tl_report_reason_gen.go#L966: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_report_reason_gen.go#L975: return fmt.Errorf("unable to encode ReportReasonClass as nil")
tl_restriction_reason_gen.go#L133: return fmt.Errorf("can't encode restrictionReason#d072acb4 as nil")
tl_restriction_reason_gen.go#L142: return fmt.Errorf("can't encode restrictionReason#d072acb4 as nil")
tl_restriction_reason_gen.go#L168: return fmt.Errorf("can't decode restrictionReason#d072acb4 to nil")
tl_restriction_reason_gen.go#L171: return fmt.Errorf("unable to decode restrictionReason#d072acb4: %w", err)
tl_restriction_reason_gen.go#L179: return fmt.Errorf("can't decode restrictionReason#d072acb4 to nil")
tl_restriction_reason_gen.go#L184: return fmt.Errorf("unable to decode restrictionReason#d072acb4: field platform: %w", err)
tl_restriction_reason_gen.go#L191: return fmt.Errorf("unable to decode restrictionReason#d072acb4: field reason: %w", err)
tl_restriction_reason_gen.go#L198: return fmt.Errorf("unable to decode restrictionReason#d072acb4: field text: %w", err)
tl_rich_text_gen.go#L88: return fmt.Errorf("can't encode textEmpty#dc3d824f as nil")
tl_rich_text_gen.go#L97: return fmt.Errorf("can't encode textEmpty#dc3d824f as nil")
tl_rich_text_gen.go#L105: return fmt.Errorf("can't decode textEmpty#dc3d824f to nil")
tl_rich_text_gen.go#L108: return fmt.Errorf("unable to decode textEmpty#dc3d824f: %w", err)
tl_rich_text_gen.go#L116: return fmt.Errorf("can't decode textEmpty#dc3d824f to nil")
tl_rich_text_gen.go#L207: return fmt.Errorf("can't encode textPlain#744694e0 as nil")
tl_rich_text_gen.go#L216: return fmt.Errorf("can't encode textPlain#744694e0 as nil")
tl_rich_text_gen.go#L230: return fmt.Errorf("can't decode textPlain#744694e0 to nil")
tl_rich_text_gen.go#L233: return fmt.Errorf("unable to decode textPlain#744694e0: %w", err)
tl_rich_text_gen.go#L241: return fmt.Errorf("can't decode textPlain#744694e0 to nil")
tl_rich_text_gen.go#L246: return fmt.Errorf("unable to decode textPlain#744694e0: field text: %w", err)
tl_rich_text_gen.go#L339: return fmt.Errorf("can't encode textBold#6724abc4 as nil")
tl_rich_text_gen.go#L348: return fmt.Errorf("can't encode textBold#6724abc4 as nil")
tl_rich_text_gen.go#L351: return fmt.Errorf("unable to encode textBold#6724abc4: field text is nil")
tl_rich_text_gen.go#L354: return fmt.Errorf("unable to encode textBold#6724abc4: field text: %w", err)
tl_rich_text_gen.go#L367: return fmt.Errorf("can't decode textBold#6724abc4 to nil")
tl_rich_text_gen.go#L370: return fmt.Errorf("unable to decode textBold#6724abc4: %w", err)
tl_rich_text_gen.go#L378: return fmt.Errorf("can't decode textBold#6724abc4 to nil")
tl_rich_text_gen.go#L383: return fmt.Errorf("unable to decode textBold#6724abc4: field text: %w", err)
tl_rich_text_gen.go#L476: return fmt.Errorf("can't encode textItalic#d912a59c as nil")
tl_rich_text_gen.go#L485: return fmt.Errorf("can't encode textItalic#d912a59c as nil")
tl_rich_text_gen.go#L488: return fmt.Errorf("unable to encode textItalic#d912a59c: field text is nil")
tl_rich_text_gen.go#L491: return fmt.Errorf("unable to encode textItalic#d912a59c: field text: %w", err)
tl_rich_text_gen.go#L504: return fmt.Errorf("can't decode textItalic#d912a59c to nil")
tl_rich_text_gen.go#L507: return fmt.Errorf("unable to decode textItalic#d912a59c: %w", err)
tl_rich_text_gen.go#L515: return fmt.Errorf("can't decode textItalic#d912a59c to nil")
tl_rich_text_gen.go#L520: return fmt.Errorf("unable to decode textItalic#d912a59c: field text: %w", err)
tl_rich_text_gen.go#L613: return fmt.Errorf("can't encode textUnderline#c12622c4 as nil")
tl_rich_text_gen.go#L622: return fmt.Errorf("can't encode textUnderline#c12622c4 as nil")
tl_rich_text_gen.go#L625: return fmt.Errorf("unable to encode textUnderline#c12622c4: field text is nil")
tl_rich_text_gen.go#L628: return fmt.Errorf("unable to encode textUnderline#c12622c4: field text: %w", err)
tl_rich_text_gen.go#L641: return fmt.Errorf("can't decode textUnderline#c12622c4 to nil")
tl_rich_text_gen.go#L644: return fmt.Errorf("unable to decode textUnderline#c12622c4: %w", err)
tl_rich_text_gen.go#L652: return fmt.Errorf("can't decode textUnderline#c12622c4 to nil")
tl_rich_text_gen.go#L657: return fmt.Errorf("unable to decode textUnderline#c12622c4: field text: %w", err)
tl_rich_text_gen.go#L750: return fmt.Errorf("can't encode textStrike#9bf8bb95 as nil")
tl_rich_text_gen.go#L759: return fmt.Errorf("can't encode textStrike#9bf8bb95 as nil")
tl_rich_text_gen.go#L762: return fmt.Errorf("unable to encode textStrike#9bf8bb95: field text is nil")
tl_rich_text_gen.go#L765: return fmt.Errorf("unable to encode textStrike#9bf8bb95: field text: %w", err)
tl_rich_text_gen.go#L778: return fmt.Errorf("can't decode textStrike#9bf8bb95 to nil")
tl_rich_text_gen.go#L781: return fmt.Errorf("unable to decode textStrike#9bf8bb95: %w", err)
tl_rich_text_gen.go#L789: return fmt.Errorf("can't decode textStrike#9bf8bb95 to nil")
tl_rich_text_gen.go#L794: return fmt.Errorf("unable to decode textStrike#9bf8bb95: field text: %w", err)
tl_rich_text_gen.go#L887: return fmt.Errorf("can't encode textFixed#6c3f19b9 as nil")
tl_rich_text_gen.go#L896: return fmt.Errorf("can't encode textFixed#6c3f19b9 as nil")
tl_rich_text_gen.go#L899: return fmt.Errorf("unable to encode textFixed#6c3f19b9: field text is nil")
tl_rich_text_gen.go#L902: return fmt.Errorf("unable to encode textFixed#6c3f19b9: field text: %w", err)
tl_rich_text_gen.go#L915: return fmt.Errorf("can't decode textFixed#6c3f19b9 to nil")
tl_rich_text_gen.go#L918: return fmt.Errorf("unable to decode textFixed#6c3f19b9: %w", err)
tl_rich_text_gen.go#L926: return fmt.Errorf("can't decode textFixed#6c3f19b9 to nil")
tl_rich_text_gen.go#L931: return fmt.Errorf("unable to decode textFixed#6c3f19b9: field text: %w", err)
tl_rich_text_gen.go#L1046: return fmt.Errorf("can't encode textUrl#3c2884c1 as nil")
tl_rich_text_gen.go#L1055: return fmt.Errorf("can't encode textUrl#3c2884c1 as nil")
tl_rich_text_gen.go#L1058: return fmt.Errorf("unable to encode textUrl#3c2884c1: field text is nil")
tl_rich_text_gen.go#L1061: return fmt.Errorf("unable to encode textUrl#3c2884c1: field text: %w", err)
tl_rich_text_gen.go#L1086: return fmt.Errorf("can't decode textUrl#3c2884c1 to nil")
tl_rich_text_gen.go#L1089: return fmt.Errorf("unable to decode textUrl#3c2884c1: %w", err)
tl_rich_text_gen.go#L1097: return fmt.Errorf("can't decode textUrl#3c2884c1 to nil")
tl_rich_text_gen.go#L1102: return fmt.Errorf("unable to decode textUrl#3c2884c1: field text: %w", err)
tl_rich_text_gen.go#L1109: return fmt.Errorf("unable to decode textUrl#3c2884c1: field url: %w", err)
tl_rich_text_gen.go#L1116: return fmt.Errorf("unable to decode textUrl#3c2884c1: field webpage_id: %w", err)
tl_rich_text_gen.go#L1220: return fmt.Errorf("can't encode textEmail#de5a0dd6 as nil")
tl_rich_text_gen.go#L1229: return fmt.Errorf("can't encode textEmail#de5a0dd6 as nil")
tl_rich_text_gen.go#L1232: return fmt.Errorf("unable to encode textEmail#de5a0dd6: field text is nil")
tl_rich_text_gen.go#L1235: return fmt.Errorf("unable to encode textEmail#de5a0dd6: field text: %w", err)
tl_rich_text_gen.go#L1254: return fmt.Errorf("can't decode textEmail#de5a0dd6 to nil")
tl_rich_text_gen.go#L1257: return fmt.Errorf("unable to decode textEmail#de5a0dd6: %w", err)
tl_rich_text_gen.go#L1265: return fmt.Errorf("can't decode textEmail#de5a0dd6 to nil")
tl_rich_text_gen.go#L1270: return fmt.Errorf("unable to decode textEmail#de5a0dd6: field text: %w", err)
tl_rich_text_gen.go#L1277: return fmt.Errorf("unable to decode textEmail#de5a0dd6: field email: %w", err)
tl_rich_text_gen.go#L1370: return fmt.Errorf("can't encode textConcat#7e6260d7 as nil")
tl_rich_text_gen.go#L1379: return fmt.Errorf("can't encode textConcat#7e6260d7 as nil")
tl_rich_text_gen.go#L1384: return fmt.Errorf("unable to encode textConcat#7e6260d7: field texts element with index %d is nil", idx)
tl_rich_text_gen.go#L1387: return fmt.Errorf("unable to encode textConcat#7e6260d7: field texts element with index %d: %w", idx, err)
tl_rich_text_gen.go#L1406: return fmt.Errorf("can't decode textConcat#7e6260d7 to nil")
tl_rich_text_gen.go#L1409: return fmt.Errorf("unable to decode textConcat#7e6260d7: %w", err)
tl_rich_text_gen.go#L1417: return fmt.Errorf("can't decode textConcat#7e6260d7 to nil")
tl_rich_text_gen.go#L1422: return fmt.Errorf("unable to decode textConcat#7e6260d7: field texts: %w", err)
tl_rich_text_gen.go#L1427: return fmt.Errorf("unable to decode textConcat#7e6260d7: field texts: %w", err)
tl_rich_text_gen.go#L1521: return fmt.Errorf("can't encode textSubscript#ed6a8504 as nil")
tl_rich_text_gen.go#L1530: return fmt.Errorf("can't encode textSubscript#ed6a8504 as nil")
tl_rich_text_gen.go#L1533: return fmt.Errorf("unable to encode textSubscript#ed6a8504: field text is nil")
tl_rich_text_gen.go#L1536: return fmt.Errorf("unable to encode textSubscript#ed6a8504: field text: %w", err)
tl_rich_text_gen.go#L1549: return fmt.Errorf("can't decode textSubscript#ed6a8504 to nil")
tl_rich_text_gen.go#L1552: return fmt.Errorf("unable to decode textSubscript#ed6a8504: %w", err)
tl_rich_text_gen.go#L1560: return fmt.Errorf("can't decode textSubscript#ed6a8504 to nil")
tl_rich_text_gen.go#L1565: return fmt.Errorf("unable to decode textSubscript#ed6a8504: field text: %w", err)
tl_rich_text_gen.go#L1658: return fmt.Errorf("can't encode textSuperscript#c7fb5e01 as nil")
tl_rich_text_gen.go#L1667: return fmt.Errorf("can't encode textSuperscript#c7fb5e01 as nil")
tl_rich_text_gen.go#L1670: return fmt.Errorf("unable to encode textSuperscript#c7fb5e01: field text is nil")
tl_rich_text_gen.go#L1673: return fmt.Errorf("unable to encode textSuperscript#c7fb5e01: field text: %w", err)
tl_rich_text_gen.go#L1686: return fmt.Errorf("can't decode textSuperscript#c7fb5e01 to nil")
tl_rich_text_gen.go#L1689: return fmt.Errorf("unable to decode textSuperscript#c7fb5e01: %w", err)
tl_rich_text_gen.go#L1697: return fmt.Errorf("can't decode textSuperscript#c7fb5e01 to nil")
tl_rich_text_gen.go#L1702: return fmt.Errorf("unable to decode textSuperscript#c7fb5e01: field text: %w", err)
tl_rich_text_gen.go#L1795: return fmt.Errorf("can't encode textMarked#34b8621 as nil")
tl_rich_text_gen.go#L1804: return fmt.Errorf("can't encode textMarked#34b8621 as nil")
tl_rich_text_gen.go#L1807: return fmt.Errorf("unable to encode textMarked#34b8621: field text is nil")
tl_rich_text_gen.go#L1810: return fmt.Errorf("unable to encode textMarked#34b8621: field text: %w", err)
tl_rich_text_gen.go#L1823: return fmt.Errorf("can't decode textMarked#34b8621 to nil")
tl_rich_text_gen.go#L1826: return fmt.Errorf("unable to decode textMarked#34b8621: %w", err)
tl_rich_text_gen.go#L1834: return fmt.Errorf("can't decode textMarked#34b8621 to nil")
tl_rich_text_gen.go#L1839: return fmt.Errorf("unable to decode textMarked#34b8621: field text: %w", err)
tl_rich_text_gen.go#L1943: return fmt.Errorf("can't encode textPhone#1ccb966a as nil")
tl_rich_text_gen.go#L1952: return fmt.Errorf("can't encode textPhone#1ccb966a as nil")
tl_rich_text_gen.go#L1955: return fmt.Errorf("unable to encode textPhone#1ccb966a: field text is nil")
tl_rich_text_gen.go#L1958: return fmt.Errorf("unable to encode textPhone#1ccb966a: field text: %w", err)
tl_rich_text_gen.go#L1977: return fmt.Errorf("can't decode textPhone#1ccb966a to nil")
tl_rich_text_gen.go#L1980: return fmt.Errorf("unable to decode textPhone#1ccb966a: %w", err)
tl_rich_text_gen.go#L1988: return fmt.Errorf("can't decode textPhone#1ccb966a to nil")
tl_rich_text_gen.go#L1993: return fmt.Errorf("unable to decode textPhone#1ccb966a: field text: %w", err)
tl_rich_text_gen.go#L2000: return fmt.Errorf("unable to decode textPhone#1ccb966a: field phone: %w", err)
tl_rich_text_gen.go#L2115: return fmt.Errorf("can't encode textImage#81ccf4f as nil")
tl_rich_text_gen.go#L2124: return fmt.Errorf("can't encode textImage#81ccf4f as nil")
tl_rich_text_gen.go#L2150: return fmt.Errorf("can't decode textImage#81ccf4f to nil")
tl_rich_text_gen.go#L2153: return fmt.Errorf("unable to decode textImage#81ccf4f: %w", err)
tl_rich_text_gen.go#L2161: return fmt.Errorf("can't decode textImage#81ccf4f to nil")
tl_rich_text_gen.go#L2166: return fmt.Errorf("unable to decode textImage#81ccf4f: field document_id: %w", err)
tl_rich_text_gen.go#L2173: return fmt.Errorf("unable to decode textImage#81ccf4f: field w: %w", err)
tl_rich_text_gen.go#L2180: return fmt.Errorf("unable to decode textImage#81ccf4f: field h: %w", err)
tl_rich_text_gen.go#L2284: return fmt.Errorf("can't encode textAnchor#35553762 as nil")
tl_rich_text_gen.go#L2293: return fmt.Errorf("can't encode textAnchor#35553762 as nil")
tl_rich_text_gen.go#L2296: return fmt.Errorf("unable to encode textAnchor#35553762: field text is nil")
tl_rich_text_gen.go#L2299: return fmt.Errorf("unable to encode textAnchor#35553762: field text: %w", err)
tl_rich_text_gen.go#L2318: return fmt.Errorf("can't decode textAnchor#35553762 to nil")
tl_rich_text_gen.go#L2321: return fmt.Errorf("unable to decode textAnchor#35553762: %w", err)
tl_rich_text_gen.go#L2329: return fmt.Errorf("can't decode textAnchor#35553762 to nil")
tl_rich_text_gen.go#L2334: return fmt.Errorf("unable to decode textAnchor#35553762: field text: %w", err)
tl_rich_text_gen.go#L2341: return fmt.Errorf("unable to decode textAnchor#35553762: field name: %w", err)
tl_rich_text_gen.go#L2419: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2426: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2433: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2440: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2447: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2454: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2461: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2468: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2475: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2482: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2489: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2496: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2503: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2510: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2517: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2524: return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
tl_rich_text_gen.go#L2528: return nil, fmt.Errorf("unable to decode RichTextClass: %w", bin.NewUnexpectedID(id))
tl_rich_text_gen.go#L2540: return fmt.Errorf("unable to decode RichTextBox to nil")
tl_rich_text_gen.go#L2544: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_rich_text_gen.go#L2553: return fmt.Errorf("unable to encode RichTextClass as nil")
tl_saved_phone_contact_gen.go#L138: return fmt.Errorf("can't encode savedPhoneContact#1142bd56 as nil")
tl_saved_phone_contact_gen.go#L147: return fmt.Errorf("can't encode savedPhoneContact#1142bd56 as nil")
tl_saved_phone_contact_gen.go#L179: return fmt.Errorf("can't decode savedPhoneContact#1142bd56 to nil")
tl_saved_phone_contact_gen.go#L182: return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: %w", err)
tl_saved_phone_contact_gen.go#L190: return fmt.Errorf("can't decode savedPhoneContact#1142bd56 to nil")
tl_saved_phone_contact_gen.go#L195: return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: field phone: %w", err)
tl_saved_phone_contact_gen.go#L202: return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: field first_name: %w", err)
tl_saved_phone_contact_gen.go#L209: return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: field last_name: %w", err)
tl_saved_phone_contact_gen.go#L216: return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: field date: %w", err)
tl_saved_phone_contact_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_saved_phone_contact_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_saved_phone_contact_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_saved_phone_contact_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_saved_phone_contact_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_saved_phone_contact_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_saved_phone_contact_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_secure_credentials_encrypted_gen.go#L142: return fmt.Errorf("can't encode secureCredentialsEncrypted#33f0ea47 as nil")
tl_secure_credentials_encrypted_gen.go#L151: return fmt.Errorf("can't encode secureCredentialsEncrypted#33f0ea47 as nil")
tl_secure_credentials_encrypted_gen.go#L177: return fmt.Errorf("can't decode secureCredentialsEncrypted#33f0ea47 to nil")
tl_secure_credentials_encrypted_gen.go#L180: return fmt.Errorf("unable to decode secureCredentialsEncrypted#33f0ea47: %w", err)
tl_secure_credentials_encrypted_gen.go#L188: return fmt.Errorf("can't decode secureCredentialsEncrypted#33f0ea47 to nil")
tl_secure_credentials_encrypted_gen.go#L193: return fmt.Errorf("unable to decode secureCredentialsEncrypted#33f0ea47: field data: %w", err)
tl_secure_credentials_encrypted_gen.go#L200: return fmt.Errorf("unable to decode secureCredentialsEncrypted#33f0ea47: field hash: %w", err)
tl_secure_credentials_encrypted_gen.go#L207: return fmt.Errorf("unable to decode secureCredentialsEncrypted#33f0ea47: field secret: %w", err)
tl_secure_data_gen.go#L131: return fmt.Errorf("can't encode secureData#8aeabec3 as nil")
tl_secure_data_gen.go#L140: return fmt.Errorf("can't encode secureData#8aeabec3 as nil")
tl_secure_data_gen.go#L166: return fmt.Errorf("can't decode secureData#8aeabec3 to nil")
tl_secure_data_gen.go#L169: return fmt.Errorf("unable to decode secureData#8aeabec3: %w", err)
tl_secure_data_gen.go#L177: return fmt.Errorf("can't decode secureData#8aeabec3 to nil")
tl_secure_data_gen.go#L182: return fmt.Errorf("unable to decode secureData#8aeabec3: field data: %w", err)
tl_secure_data_gen.go#L189: return fmt.Errorf("unable to decode secureData#8aeabec3: field data_hash: %w", err)
tl_secure_data_gen.go#L196: return fmt.Errorf("unable to decode secureData#8aeabec3: field secret: %w", err)
tl_secure_file_gen.go#L88: return fmt.Errorf("can't encode secureFileEmpty#64199744 as nil")
tl_secure_file_gen.go#L97: return fmt.Errorf("can't encode secureFileEmpty#64199744 as nil")
tl_secure_file_gen.go#L105: return fmt.Errorf("can't decode secureFileEmpty#64199744 to nil")
tl_secure_file_gen.go#L108: return fmt.Errorf("unable to decode secureFileEmpty#64199744: %w", err)
tl_secure_file_gen.go#L116: return fmt.Errorf("can't decode secureFileEmpty#64199744 to nil")
tl_secure_file_gen.go#L277: return fmt.Errorf("can't encode secureFile#e0277a62 as nil")
tl_secure_file_gen.go#L286: return fmt.Errorf("can't encode secureFile#e0277a62 as nil")
tl_secure_file_gen.go#L336: return fmt.Errorf("can't decode secureFile#e0277a62 to nil")
tl_secure_file_gen.go#L339: return fmt.Errorf("unable to decode secureFile#e0277a62: %w", err)
tl_secure_file_gen.go#L347: return fmt.Errorf("can't decode secureFile#e0277a62 to nil")
tl_secure_file_gen.go#L352: return fmt.Errorf("unable to decode secureFile#e0277a62: field id: %w", err)
tl_secure_file_gen.go#L359: return fmt.Errorf("unable to decode secureFile#e0277a62: field access_hash: %w", err)
tl_secure_file_gen.go#L366: return fmt.Errorf("unable to decode secureFile#e0277a62: field size: %w", err)
tl_secure_file_gen.go#L373: return fmt.Errorf("unable to decode secureFile#e0277a62: field dc_id: %w", err)
tl_secure_file_gen.go#L380: return fmt.Errorf("unable to decode secureFile#e0277a62: field date: %w", err)
tl_secure_file_gen.go#L387: return fmt.Errorf("unable to decode secureFile#e0277a62: field file_hash: %w", err)
tl_secure_file_gen.go#L394: return fmt.Errorf("unable to decode secureFile#e0277a62: field secret: %w", err)
tl_secure_file_gen.go#L489: return nil, fmt.Errorf("unable to decode SecureFileClass: %w", err)
tl_secure_file_gen.go#L496: return nil, fmt.Errorf("unable to decode SecureFileClass: %w", err)
tl_secure_file_gen.go#L500: return nil, fmt.Errorf("unable to decode SecureFileClass: %w", bin.NewUnexpectedID(id))
tl_secure_file_gen.go#L512: return fmt.Errorf("unable to decode SecureFileBox to nil")
tl_secure_file_gen.go#L516: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_secure_file_gen.go#L525: return fmt.Errorf("unable to encode SecureFileClass as nil")
tl_secure_password_kdf_algo_gen.go#L88: return fmt.Errorf("can't encode securePasswordKdfAlgoUnknown#4a8537 as nil")
tl_secure_password_kdf_algo_gen.go#L97: return fmt.Errorf("can't encode securePasswordKdfAlgoUnknown#4a8537 as nil")
tl_secure_password_kdf_algo_gen.go#L105: return fmt.Errorf("can't decode securePasswordKdfAlgoUnknown#4a8537 to nil")
tl_secure_password_kdf_algo_gen.go#L108: return fmt.Errorf("unable to decode securePasswordKdfAlgoUnknown#4a8537: %w", err)
tl_secure_password_kdf_algo_gen.go#L116: return fmt.Errorf("can't decode securePasswordKdfAlgoUnknown#4a8537 to nil")
tl_secure_password_kdf_algo_gen.go#L207: return fmt.Errorf("can't encode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 as nil")
tl_secure_password_kdf_algo_gen.go#L216: return fmt.Errorf("can't encode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 as nil")
tl_secure_password_kdf_algo_gen.go#L230: return fmt.Errorf("can't decode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 to nil")
tl_secure_password_kdf_algo_gen.go#L233: return fmt.Errorf("unable to decode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0: %w", err)
tl_secure_password_kdf_algo_gen.go#L241: return fmt.Errorf("can't decode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 to nil")
tl_secure_password_kdf_algo_gen.go#L246: return fmt.Errorf("unable to decode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0: field salt: %w", err)
tl_secure_password_kdf_algo_gen.go#L341: return fmt.Errorf("can't encode securePasswordKdfAlgoSHA512#86471d92 as nil")
tl_secure_password_kdf_algo_gen.go#L350: return fmt.Errorf("can't encode securePasswordKdfAlgoSHA512#86471d92 as nil")
tl_secure_password_kdf_algo_gen.go#L364: return fmt.Errorf("can't decode securePasswordKdfAlgoSHA512#86471d92 to nil")
tl_secure_password_kdf_algo_gen.go#L367: return fmt.Errorf("unable to decode securePasswordKdfAlgoSHA512#86471d92: %w", err)
tl_secure_password_kdf_algo_gen.go#L375: return fmt.Errorf("can't decode securePasswordKdfAlgoSHA512#86471d92 to nil")
tl_secure_password_kdf_algo_gen.go#L380: return fmt.Errorf("unable to decode securePasswordKdfAlgoSHA512#86471d92: field salt: %w", err)
tl_secure_password_kdf_algo_gen.go#L445: return nil, fmt.Errorf("unable to decode SecurePasswordKdfAlgoClass: %w", err)
tl_secure_password_kdf_algo_gen.go#L452: return nil, fmt.Errorf("unable to decode SecurePasswordKdfAlgoClass: %w", err)
tl_secure_password_kdf_algo_gen.go#L459: return nil, fmt.Errorf("unable to decode SecurePasswordKdfAlgoClass: %w", err)
tl_secure_password_kdf_algo_gen.go#L463: return nil, fmt.Errorf("unable to decode SecurePasswordKdfAlgoClass: %w", bin.NewUnexpectedID(id))
tl_secure_password_kdf_algo_gen.go#L475: return fmt.Errorf("unable to decode SecurePasswordKdfAlgoBox to nil")
tl_secure_password_kdf_algo_gen.go#L479: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_secure_password_kdf_algo_gen.go#L488: return fmt.Errorf("unable to encode SecurePasswordKdfAlgoClass as nil")
tl_secure_plain_data_gen.go#L109: return fmt.Errorf("can't encode securePlainPhone#7d6099dd as nil")
tl_secure_plain_data_gen.go#L118: return fmt.Errorf("can't encode securePlainPhone#7d6099dd as nil")
tl_secure_plain_data_gen.go#L132: return fmt.Errorf("can't decode securePlainPhone#7d6099dd to nil")
tl_secure_plain_data_gen.go#L135: return fmt.Errorf("unable to decode securePlainPhone#7d6099dd: %w", err)
tl_secure_plain_data_gen.go#L143: return fmt.Errorf("can't decode securePlainPhone#7d6099dd to nil")
tl_secure_plain_data_gen.go#L148: return fmt.Errorf("unable to decode securePlainPhone#7d6099dd: field phone: %w", err)
tl_secure_plain_data_gen.go#L245: return fmt.Errorf("can't encode securePlainEmail#21ec5a5f as nil")
tl_secure_plain_data_gen.go#L254: return fmt.Errorf("can't encode securePlainEmail#21ec5a5f as nil")
tl_secure_plain_data_gen.go#L268: return fmt.Errorf("can't decode securePlainEmail#21ec5a5f to nil")
tl_secure_plain_data_gen.go#L271: return fmt.Errorf("unable to decode securePlainEmail#21ec5a5f: %w", err)
tl_secure_plain_data_gen.go#L279: return fmt.Errorf("can't decode securePlainEmail#21ec5a5f to nil")
tl_secure_plain_data_gen.go#L284: return fmt.Errorf("unable to decode securePlainEmail#21ec5a5f: field email: %w", err)
tl_secure_plain_data_gen.go#L348: return nil, fmt.Errorf("unable to decode SecurePlainDataClass: %w", err)
tl_secure_plain_data_gen.go#L355: return nil, fmt.Errorf("unable to decode SecurePlainDataClass: %w", err)
tl_secure_plain_data_gen.go#L359: return nil, fmt.Errorf("unable to decode SecurePlainDataClass: %w", bin.NewUnexpectedID(id))
tl_secure_plain_data_gen.go#L371: return fmt.Errorf("unable to decode SecurePlainDataBox to nil")
tl_secure_plain_data_gen.go#L375: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_secure_plain_data_gen.go#L384: return fmt.Errorf("unable to encode SecurePlainDataClass as nil")
tl_secure_required_type_gen.go#L149: return fmt.Errorf("can't encode secureRequiredType#829d99da as nil")
tl_secure_required_type_gen.go#L158: return fmt.Errorf("can't encode secureRequiredType#829d99da as nil")
tl_secure_required_type_gen.go#L170: return fmt.Errorf("unable to encode secureRequiredType#829d99da: field flags: %w", err)
tl_secure_required_type_gen.go#L173: return fmt.Errorf("unable to encode secureRequiredType#829d99da: field type is nil")
tl_secure_required_type_gen.go#L176: return fmt.Errorf("unable to encode secureRequiredType#829d99da: field type: %w", err)
tl_secure_required_type_gen.go#L237: return fmt.Errorf("can't decode secureRequiredType#829d99da to nil")
tl_secure_required_type_gen.go#L240: return fmt.Errorf("unable to decode secureRequiredType#829d99da: %w", err)
tl_secure_required_type_gen.go#L248: return fmt.Errorf("can't decode secureRequiredType#829d99da to nil")
tl_secure_required_type_gen.go#L252: return fmt.Errorf("unable to decode secureRequiredType#829d99da: field flags: %w", err)
tl_secure_required_type_gen.go#L261: return fmt.Errorf("unable to decode secureRequiredType#829d99da: field type: %w", err)
tl_secure_required_type_gen.go#L354: return fmt.Errorf("can't encode secureRequiredTypeOneOf#27477b4 as nil")
tl_secure_required_type_gen.go#L363: return fmt.Errorf("can't encode secureRequiredTypeOneOf#27477b4 as nil")
tl_secure_required_type_gen.go#L368: return fmt.Errorf("unable to encode secureRequiredTypeOneOf#27477b4: field types element with index %d is nil", idx)
tl_secure_required_type_gen.go#L371: return fmt.Errorf("unable to encode secureRequiredTypeOneOf#27477b4: field types element with index %d: %w", idx, err)
tl_secure_required_type_gen.go#L390: return fmt.Errorf("can't decode secureRequiredTypeOneOf#27477b4 to nil")
tl_secure_required_type_gen.go#L393: return fmt.Errorf("unable to decode secureRequiredTypeOneOf#27477b4: %w", err)
tl_secure_required_type_gen.go#L401: return fmt.Errorf("can't decode secureRequiredTypeOneOf#27477b4 to nil")
tl_secure_required_type_gen.go#L406: return fmt.Errorf("unable to decode secureRequiredTypeOneOf#27477b4: field types: %w", err)
tl_secure_required_type_gen.go#L411: return fmt.Errorf("unable to decode secureRequiredTypeOneOf#27477b4: field types: %w", err)
tl_secure_required_type_gen.go#L476: return nil, fmt.Errorf("unable to decode SecureRequiredTypeClass: %w", err)
tl_secure_required_type_gen.go#L483: return nil, fmt.Errorf("unable to decode SecureRequiredTypeClass: %w", err)
tl_secure_required_type_gen.go#L487: return nil, fmt.Errorf("unable to decode SecureRequiredTypeClass: %w", bin.NewUnexpectedID(id))
tl_secure_required_type_gen.go#L499: return fmt.Errorf("unable to decode SecureRequiredTypeBox to nil")
tl_secure_required_type_gen.go#L503: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_secure_required_type_gen.go#L512: return fmt.Errorf("unable to encode SecureRequiredTypeClass as nil")
tl_secure_secret_settings_gen.go#L127: return fmt.Errorf("can't encode secureSecretSettings#1527bcac as nil")
tl_secure_secret_settings_gen.go#L136: return fmt.Errorf("can't encode secureSecretSettings#1527bcac as nil")
tl_secure_secret_settings_gen.go#L139: return fmt.Errorf("unable to encode secureSecretSettings#1527bcac: field secure_algo is nil")
tl_secure_secret_settings_gen.go#L142: return fmt.Errorf("unable to encode secureSecretSettings#1527bcac: field secure_algo: %w", err)
tl_secure_secret_settings_gen.go#L167: return fmt.Errorf("can't decode secureSecretSettings#1527bcac to nil")
tl_secure_secret_settings_gen.go#L170: return fmt.Errorf("unable to decode secureSecretSettings#1527bcac: %w", err)
tl_secure_secret_settings_gen.go#L178: return fmt.Errorf("can't decode secureSecretSettings#1527bcac to nil")
tl_secure_secret_settings_gen.go#L183: return fmt.Errorf("unable to decode secureSecretSettings#1527bcac: field secure_algo: %w", err)
tl_secure_secret_settings_gen.go#L190: return fmt.Errorf("unable to decode secureSecretSettings#1527bcac: field secure_secret: %w", err)
tl_secure_secret_settings_gen.go#L197: return fmt.Errorf("unable to decode secureSecretSettings#1527bcac: field secure_secret_id: %w", err)
tl_secure_value_error_gen.go#L150: return fmt.Errorf("can't encode secureValueErrorData#e8a40bd9 as nil")
tl_secure_value_error_gen.go#L159: return fmt.Errorf("can't encode secureValueErrorData#e8a40bd9 as nil")
tl_secure_value_error_gen.go#L162: return fmt.Errorf("unable to encode secureValueErrorData#e8a40bd9: field type is nil")
tl_secure_value_error_gen.go#L165: return fmt.Errorf("unable to encode secureValueErrorData#e8a40bd9: field type: %w", err)
tl_secure_value_error_gen.go#L196: return fmt.Errorf("can't decode secureValueErrorData#e8a40bd9 to nil")
tl_secure_value_error_gen.go#L199: return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: %w", err)
tl_secure_value_error_gen.go#L207: return fmt.Errorf("can't decode secureValueErrorData#e8a40bd9 to nil")
tl_secure_value_error_gen.go#L212: return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: field type: %w", err)
tl_secure_value_error_gen.go#L219: return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: field data_hash: %w", err)
tl_secure_value_error_gen.go#L226: return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: field field: %w", err)
tl_secure_value_error_gen.go#L233: return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: field text: %w", err)
tl_secure_value_error_gen.go#L356: return fmt.Errorf("can't encode secureValueErrorFrontSide#be3dfa as nil")
tl_secure_value_error_gen.go#L365: return fmt.Errorf("can't encode secureValueErrorFrontSide#be3dfa as nil")
tl_secure_value_error_gen.go#L368: return fmt.Errorf("unable to encode secureValueErrorFrontSide#be3dfa: field type is nil")
tl_secure_value_error_gen.go#L371: return fmt.Errorf("unable to encode secureValueErrorFrontSide#be3dfa: field type: %w", err)
tl_secure_value_error_gen.go#L396: return fmt.Errorf("can't decode secureValueErrorFrontSide#be3dfa to nil")
tl_secure_value_error_gen.go#L399: return fmt.Errorf("unable to decode secureValueErrorFrontSide#be3dfa: %w", err)
tl_secure_value_error_gen.go#L407: return fmt.Errorf("can't decode secureValueErrorFrontSide#be3dfa to nil")
tl_secure_value_error_gen.go#L412: return fmt.Errorf("unable to decode secureValueErrorFrontSide#be3dfa: field type: %w", err)
tl_secure_value_error_gen.go#L419: return fmt.Errorf("unable to decode secureValueErrorFrontSide#be3dfa: field file_hash: %w", err)
tl_secure_value_error_gen.go#L426: return fmt.Errorf("unable to decode secureValueErrorFrontSide#be3dfa: field text: %w", err)
tl_secure_value_error_gen.go#L546: return fmt.Errorf("can't encode secureValueErrorReverseSide#868a2aa5 as nil")
tl_secure_value_error_gen.go#L555: return fmt.Errorf("can't encode secureValueErrorReverseSide#868a2aa5 as nil")
tl_secure_value_error_gen.go#L558: return fmt.Errorf("unable to encode secureValueErrorReverseSide#868a2aa5: field type is nil")
tl_secure_value_error_gen.go#L561: return fmt.Errorf("unable to encode secureValueErrorReverseSide#868a2aa5: field type: %w", err)
tl_secure_value_error_gen.go#L586: return fmt.Errorf("can't decode secureValueErrorReverseSide#868a2aa5 to nil")
tl_secure_value_error_gen.go#L589: return fmt.Errorf("unable to decode secureValueErrorReverseSide#868a2aa5: %w", err)
tl_secure_value_error_gen.go#L597: return fmt.Errorf("can't decode secureValueErrorReverseSide#868a2aa5 to nil")
tl_secure_value_error_gen.go#L602: return fmt.Errorf("unable to decode secureValueErrorReverseSide#868a2aa5: field type: %w", err)
tl_secure_value_error_gen.go#L609: return fmt.Errorf("unable to decode secureValueErrorReverseSide#868a2aa5: field file_hash: %w", err)
tl_secure_value_error_gen.go#L616: return fmt.Errorf("unable to decode secureValueErrorReverseSide#868a2aa5: field text: %w", err)
tl_secure_value_error_gen.go#L739: return fmt.Errorf("can't encode secureValueErrorSelfie#e537ced6 as nil")
tl_secure_value_error_gen.go#L748: return fmt.Errorf("can't encode secureValueErrorSelfie#e537ced6 as nil")
tl_secure_value_error_gen.go#L751: return fmt.Errorf("unable to encode secureValueErrorSelfie#e537ced6: field type is nil")
tl_secure_value_error_gen.go#L754: return fmt.Errorf("unable to encode secureValueErrorSelfie#e537ced6: field type: %w", err)
tl_secure_value_error_gen.go#L779: return fmt.Errorf("can't decode secureValueErrorSelfie#e537ced6 to nil")
tl_secure_value_error_gen.go#L782: return fmt.Errorf("unable to decode secureValueErrorSelfie#e537ced6: %w", err)
tl_secure_value_error_gen.go#L790: return fmt.Errorf("can't decode secureValueErrorSelfie#e537ced6 to nil")
tl_secure_value_error_gen.go#L795: return fmt.Errorf("unable to decode secureValueErrorSelfie#e537ced6: field type: %w", err)
tl_secure_value_error_gen.go#L802: return fmt.Errorf("unable to decode secureValueErrorSelfie#e537ced6: field file_hash: %w", err)
tl_secure_value_error_gen.go#L809: return fmt.Errorf("unable to decode secureValueErrorSelfie#e537ced6: field text: %w", err)
tl_secure_value_error_gen.go#L934: return fmt.Errorf("can't encode secureValueErrorFile#7a700873 as nil")
tl_secure_value_error_gen.go#L943: return fmt.Errorf("can't encode secureValueErrorFile#7a700873 as nil")
tl_secure_value_error_gen.go#L946: return fmt.Errorf("unable to encode secureValueErrorFile#7a700873: field type is nil")
tl_secure_value_error_gen.go#L949: return fmt.Errorf("unable to encode secureValueErrorFile#7a700873: field type: %w", err)
tl_secure_value_error_gen.go#L974: return fmt.Errorf("can't decode secureValueErrorFile#7a700873 to nil")
tl_secure_value_error_gen.go#L977: return fmt.Errorf("unable to decode secureValueErrorFile#7a700873: %w", err)
tl_secure_value_error_gen.go#L985: return fmt.Errorf("can't decode secureValueErrorFile#7a700873 to nil")
tl_secure_value_error_gen.go#L990: return fmt.Errorf("unable to decode secureValueErrorFile#7a700873: field type: %w", err)
tl_secure_value_error_gen.go#L997: return fmt.Errorf("unable to decode secureValueErrorFile#7a700873: field file_hash: %w", err)
tl_secure_value_error_gen.go#L1004: return fmt.Errorf("unable to decode secureValueErrorFile#7a700873: field text: %w", err)
tl_secure_value_error_gen.go#L1129: return fmt.Errorf("can't encode secureValueErrorFiles#666220e9 as nil")
tl_secure_value_error_gen.go#L1138: return fmt.Errorf("can't encode secureValueErrorFiles#666220e9 as nil")
tl_secure_value_error_gen.go#L1141: return fmt.Errorf("unable to encode secureValueErrorFiles#666220e9: field type is nil")
tl_secure_value_error_gen.go#L1144: return fmt.Errorf("unable to encode secureValueErrorFiles#666220e9: field type: %w", err)
tl_secure_value_error_gen.go#L1172: return fmt.Errorf("can't decode secureValueErrorFiles#666220e9 to nil")
tl_secure_value_error_gen.go#L1175: return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: %w", err)
tl_secure_value_error_gen.go#L1183: return fmt.Errorf("can't decode secureValueErrorFiles#666220e9 to nil")
tl_secure_value_error_gen.go#L1188: return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: field type: %w", err)
tl_secure_value_error_gen.go#L1195: return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: field file_hash: %w", err)
tl_secure_value_error_gen.go#L1200: return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: field file_hash: %w", err)
tl_secure_value_error_gen.go#L1208: return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: field text: %w", err)
tl_secure_value_error_gen.go#L1323: return fmt.Errorf("can't encode secureValueError#869d758f as nil")
tl_secure_value_error_gen.go#L1332: return fmt.Errorf("can't encode secureValueError#869d758f as nil")
tl_secure_value_error_gen.go#L1335: return fmt.Errorf("unable to encode secureValueError#869d758f: field type is nil")
tl_secure_value_error_gen.go#L1338: return fmt.Errorf("unable to encode secureValueError#869d758f: field type: %w", err)
tl_secure_value_error_gen.go#L1363: return fmt.Errorf("can't decode secureValueError#869d758f to nil")
tl_secure_value_error_gen.go#L1366: return fmt.Errorf("unable to decode secureValueError#869d758f: %w", err)
tl_secure_value_error_gen.go#L1374: return fmt.Errorf("can't decode secureValueError#869d758f to nil")
tl_secure_value_error_gen.go#L1379: return fmt.Errorf("unable to decode secureValueError#869d758f: field type: %w", err)
tl_secure_value_error_gen.go#L1386: return fmt.Errorf("unable to decode secureValueError#869d758f: field hash: %w", err)
tl_secure_value_error_gen.go#L1393: return fmt.Errorf("unable to decode secureValueError#869d758f: field text: %w", err)
tl_secure_value_error_gen.go#L1525: return fmt.Errorf("can't encode secureValueErrorTranslationFile#a1144770 as nil")
tl_secure_value_error_gen.go#L1534: return fmt.Errorf("can't encode secureValueErrorTranslationFile#a1144770 as nil")
tl_secure_value_error_gen.go#L1537: return fmt.Errorf("unable to encode secureValueErrorTranslationFile#a1144770: field type is nil")
tl_secure_value_error_gen.go#L1540: return fmt.Errorf("unable to encode secureValueErrorTranslationFile#a1144770: field type: %w", err)
tl_secure_value_error_gen.go#L1565: return fmt.Errorf("can't decode secureValueErrorTranslationFile#a1144770 to nil")
tl_secure_value_error_gen.go#L1568: return fmt.Errorf("unable to decode secureValueErrorTranslationFile#a1144770: %w", err)
tl_secure_value_error_gen.go#L1576: return fmt.Errorf("can't decode secureValueErrorTranslationFile#a1144770 to nil")
tl_secure_value_error_gen.go#L1581: return fmt.Errorf("unable to decode secureValueErrorTranslationFile#a1144770: field type: %w", err)
tl_secure_value_error_gen.go#L1588: return fmt.Errorf("unable to decode secureValueErrorTranslationFile#a1144770: field file_hash: %w", err)
tl_secure_value_error_gen.go#L1595: return fmt.Errorf("unable to decode secureValueErrorTranslationFile#a1144770: field text: %w", err)
tl_secure_value_error_gen.go#L1727: return fmt.Errorf("can't encode secureValueErrorTranslationFiles#34636dd8 as nil")
tl_secure_value_error_gen.go#L1736: return fmt.Errorf("can't encode secureValueErrorTranslationFiles#34636dd8 as nil")
tl_secure_value_error_gen.go#L1739: return fmt.Errorf("unable to encode secureValueErrorTranslationFiles#34636dd8: field type is nil")
tl_secure_value_error_gen.go#L1742: return fmt.Errorf("unable to encode secureValueErrorTranslationFiles#34636dd8: field type: %w", err)
tl_secure_value_error_gen.go#L1770: return fmt.Errorf("can't decode secureValueErrorTranslationFiles#34636dd8 to nil")
tl_secure_value_error_gen.go#L1773: return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: %w", err)
tl_secure_value_error_gen.go#L1781: return fmt.Errorf("can't decode secureValueErrorTranslationFiles#34636dd8 to nil")
tl_secure_value_error_gen.go#L1786: return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: field type: %w", err)
tl_secure_value_error_gen.go#L1793: return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: field file_hash: %w", err)
tl_secure_value_error_gen.go#L1798: return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: field file_hash: %w", err)
tl_secure_value_error_gen.go#L1806: return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: field text: %w", err)
tl_secure_value_error_gen.go#L1894: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1901: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1908: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1915: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1922: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1929: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1936: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1943: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1950: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
tl_secure_value_error_gen.go#L1954: return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", bin.NewUnexpectedID(id))
tl_secure_value_error_gen.go#L1966: return fmt.Errorf("unable to decode SecureValueErrorBox to nil")
tl_secure_value_error_gen.go#L1970: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_secure_value_error_gen.go#L1979: return fmt.Errorf("unable to encode SecureValueErrorClass as nil")
tl_secure_value_gen.go#L267: return fmt.Errorf("can't encode secureValue#187fa0ca as nil")
tl_secure_value_gen.go#L276: return fmt.Errorf("can't encode secureValue#187fa0ca as nil")
tl_secure_value_gen.go#L300: return fmt.Errorf("unable to encode secureValue#187fa0ca: field flags: %w", err)
tl_secure_value_gen.go#L303: return fmt.Errorf("unable to encode secureValue#187fa0ca: field type is nil")
tl_secure_value_gen.go#L306: return fmt.Errorf("unable to encode secureValue#187fa0ca: field type: %w", err)
tl_secure_value_gen.go#L310: return fmt.Errorf("unable to encode secureValue#187fa0ca: field data: %w", err)
tl_secure_value_gen.go#L315: return fmt.Errorf("unable to encode secureValue#187fa0ca: field front_side is nil")
tl_secure_value_gen.go#L318: return fmt.Errorf("unable to encode secureValue#187fa0ca: field front_side: %w", err)
tl_secure_value_gen.go#L323: return fmt.Errorf("unable to encode secureValue#187fa0ca: field reverse_side is nil")
tl_secure_value_gen.go#L326: return fmt.Errorf("unable to encode secureValue#187fa0ca: field reverse_side: %w", err)
tl_secure_value_gen.go#L331: return fmt.Errorf("unable to encode secureValue#187fa0ca: field selfie is nil")
tl_secure_value_gen.go#L334: return fmt.Errorf("unable to encode secureValue#187fa0ca: field selfie: %w", err)
tl_secure_value_gen.go#L341: return fmt.Errorf("unable to encode secureValue#187fa0ca: field translation element with index %d is nil", idx)
tl_secure_value_gen.go#L344: return fmt.Errorf("unable to encode secureValue#187fa0ca: field translation element with index %d: %w", idx, err)
tl_secure_value_gen.go#L352: return fmt.Errorf("unable to encode secureValue#187fa0ca: field files element with index %d is nil", idx)
tl_secure_value_gen.go#L355: return fmt.Errorf("unable to encode secureValue#187fa0ca: field files element with index %d: %w", idx, err)
tl_secure_value_gen.go#L361: return fmt.Errorf("unable to encode secureValue#187fa0ca: field plain_data is nil")
tl_secure_value_gen.go#L364: return fmt.Errorf("unable to encode secureValue#187fa0ca: field plain_data: %w", err)
tl_secure_value_gen.go#L532: return fmt.Errorf("can't decode secureValue#187fa0ca to nil")
tl_secure_value_gen.go#L535: return fmt.Errorf("unable to decode secureValue#187fa0ca: %w", err)
tl_secure_value_gen.go#L543: return fmt.Errorf("can't decode secureValue#187fa0ca to nil")
tl_secure_value_gen.go#L547: return fmt.Errorf("unable to decode secureValue#187fa0ca: field flags: %w", err)
tl_secure_value_gen.go#L553: return fmt.Errorf("unable to decode secureValue#187fa0ca: field type: %w", err)
tl_secure_value_gen.go#L559: return fmt.Errorf("unable to decode secureValue#187fa0ca: field data: %w", err)
tl_secure_value_gen.go#L565: return fmt.Errorf("unable to decode secureValue#187fa0ca: field front_side: %w", err)
tl_secure_value_gen.go#L572: return fmt.Errorf("unable to decode secureValue#187fa0ca: field reverse_side: %w", err)
tl_secure_value_gen.go#L579: return fmt.Errorf("unable to decode secureValue#187fa0ca: field selfie: %w", err)
tl_secure_value_gen.go#L586: return fmt.Errorf("unable to decode secureValue#187fa0ca: field translation: %w", err)
tl_secure_value_gen.go#L591: return fmt.Errorf("unable to decode secureValue#187fa0ca: field translation: %w", err)
tl_secure_value_gen.go#L599: return fmt.Errorf("unable to decode secureValue#187fa0ca: field files: %w", err)
tl_secure_value_gen.go#L604: return fmt.Errorf("unable to decode secureValue#187fa0ca: field files: %w", err)
tl_secure_value_gen.go#L612: return fmt.Errorf("unable to decode secureValue#187fa0ca: field plain_data: %w", err)
tl_secure_value_gen.go#L619: return fmt.Errorf("unable to decode secureValue#187fa0ca: field hash: %w", err)
tl_secure_value_hash_gen.go#L116: return fmt.Errorf("can't encode secureValueHash#ed1ecdb0 as nil")
tl_secure_value_hash_gen.go#L125: return fmt.Errorf("can't encode secureValueHash#ed1ecdb0 as nil")
tl_secure_value_hash_gen.go#L128: return fmt.Errorf("unable to encode secureValueHash#ed1ecdb0: field type is nil")
tl_secure_value_hash_gen.go#L131: return fmt.Errorf("unable to encode secureValueHash#ed1ecdb0: field type: %w", err)
tl_secure_value_hash_gen.go#L150: return fmt.Errorf("can't decode secureValueHash#ed1ecdb0 to nil")
tl_secure_value_hash_gen.go#L153: return fmt.Errorf("unable to decode secureValueHash#ed1ecdb0: %w", err)
tl_secure_value_hash_gen.go#L161: return fmt.Errorf("can't decode secureValueHash#ed1ecdb0 to nil")
tl_secure_value_hash_gen.go#L166: return fmt.Errorf("unable to decode secureValueHash#ed1ecdb0: field type: %w", err)
tl_secure_value_hash_gen.go#L173: return fmt.Errorf("unable to decode secureValueHash#ed1ecdb0: field hash: %w", err)
tl_secure_value_type_gen.go#L88: return fmt.Errorf("can't encode secureValueTypePersonalDetails#9d2a81e3 as nil")
tl_secure_value_type_gen.go#L97: return fmt.Errorf("can't encode secureValueTypePersonalDetails#9d2a81e3 as nil")
tl_secure_value_type_gen.go#L105: return fmt.Errorf("can't decode secureValueTypePersonalDetails#9d2a81e3 to nil")
tl_secure_value_type_gen.go#L108: return fmt.Errorf("unable to decode secureValueTypePersonalDetails#9d2a81e3: %w", err)
tl_secure_value_type_gen.go#L116: return fmt.Errorf("can't decode secureValueTypePersonalDetails#9d2a81e3 to nil")
tl_secure_value_type_gen.go#L190: return fmt.Errorf("can't encode secureValueTypePassport#3dac6a00 as nil")
tl_secure_value_type_gen.go#L199: return fmt.Errorf("can't encode secureValueTypePassport#3dac6a00 as nil")
tl_secure_value_type_gen.go#L207: return fmt.Errorf("can't decode secureValueTypePassport#3dac6a00 to nil")
tl_secure_value_type_gen.go#L210: return fmt.Errorf("unable to decode secureValueTypePassport#3dac6a00: %w", err)
tl_secure_value_type_gen.go#L218: return fmt.Errorf("can't decode secureValueTypePassport#3dac6a00 to nil")
tl_secure_value_type_gen.go#L292: return fmt.Errorf("can't encode secureValueTypeDriverLicense#6e425c4 as nil")
tl_secure_value_type_gen.go#L301: return fmt.Errorf("can't encode secureValueTypeDriverLicense#6e425c4 as nil")
tl_secure_value_type_gen.go#L309: return fmt.Errorf("can't decode secureValueTypeDriverLicense#6e425c4 to nil")
tl_secure_value_type_gen.go#L312: return fmt.Errorf("unable to decode secureValueTypeDriverLicense#6e425c4: %w", err)
tl_secure_value_type_gen.go#L320: return fmt.Errorf("can't decode secureValueTypeDriverLicense#6e425c4 to nil")
tl_secure_value_type_gen.go#L394: return fmt.Errorf("can't encode secureValueTypeIdentityCard#a0d0744b as nil")
tl_secure_value_type_gen.go#L403: return fmt.Errorf("can't encode secureValueTypeIdentityCard#a0d0744b as nil")
tl_secure_value_type_gen.go#L411: return fmt.Errorf("can't decode secureValueTypeIdentityCard#a0d0744b to nil")
tl_secure_value_type_gen.go#L414: return fmt.Errorf("unable to decode secureValueTypeIdentityCard#a0d0744b: %w", err)
tl_secure_value_type_gen.go#L422: return fmt.Errorf("can't decode secureValueTypeIdentityCard#a0d0744b to nil")
tl_secure_value_type_gen.go#L499: return fmt.Errorf("can't encode secureValueTypeInternalPassport#99a48f23 as nil")
tl_secure_value_type_gen.go#L508: return fmt.Errorf("can't encode secureValueTypeInternalPassport#99a48f23 as nil")
tl_secure_value_type_gen.go#L516: return fmt.Errorf("can't decode secureValueTypeInternalPassport#99a48f23 to nil")
tl_secure_value_type_gen.go#L519: return fmt.Errorf("unable to decode secureValueTypeInternalPassport#99a48f23: %w", err)
tl_secure_value_type_gen.go#L527: return fmt.Errorf("can't decode secureValueTypeInternalPassport#99a48f23 to nil")
tl_secure_value_type_gen.go#L601: return fmt.Errorf("can't encode secureValueTypeAddress#cbe31e26 as nil")
tl_secure_value_type_gen.go#L610: return fmt.Errorf("can't encode secureValueTypeAddress#cbe31e26 as nil")
tl_secure_value_type_gen.go#L618: return fmt.Errorf("can't decode secureValueTypeAddress#cbe31e26 to nil")
tl_secure_value_type_gen.go#L621: return fmt.Errorf("unable to decode secureValueTypeAddress#cbe31e26: %w", err)
tl_secure_value_type_gen.go#L629: return fmt.Errorf("can't decode secureValueTypeAddress#cbe31e26 to nil")
tl_secure_value_type_gen.go#L703: return fmt.Errorf("can't encode secureValueTypeUtilityBill#fc36954e as nil")
tl_secure_value_type_gen.go#L712: return fmt.Errorf("can't encode secureValueTypeUtilityBill#fc36954e as nil")
tl_secure_value_type_gen.go#L720: return fmt.Errorf("can't decode secureValueTypeUtilityBill#fc36954e to nil")
tl_secure_value_type_gen.go#L723: return fmt.Errorf("unable to decode secureValueTypeUtilityBill#fc36954e: %w", err)
tl_secure_value_type_gen.go#L731: return fmt.Errorf("can't decode secureValueTypeUtilityBill#fc36954e to nil")
tl_secure_value_type_gen.go#L805: return fmt.Errorf("can't encode secureValueTypeBankStatement#89137c0d as nil")
tl_secure_value_type_gen.go#L814: return fmt.Errorf("can't encode secureValueTypeBankStatement#89137c0d as nil")
tl_secure_value_type_gen.go#L822: return fmt.Errorf("can't decode secureValueTypeBankStatement#89137c0d to nil")
tl_secure_value_type_gen.go#L825: return fmt.Errorf("unable to decode secureValueTypeBankStatement#89137c0d: %w", err)
tl_secure_value_type_gen.go#L833: return fmt.Errorf("can't decode secureValueTypeBankStatement#89137c0d to nil")
tl_secure_value_type_gen.go#L907: return fmt.Errorf("can't encode secureValueTypeRentalAgreement#8b883488 as nil")
tl_secure_value_type_gen.go#L916: return fmt.Errorf("can't encode secureValueTypeRentalAgreement#8b883488 as nil")
tl_secure_value_type_gen.go#L924: return fmt.Errorf("can't decode secureValueTypeRentalAgreement#8b883488 to nil")
tl_secure_value_type_gen.go#L927: return fmt.Errorf("unable to decode secureValueTypeRentalAgreement#8b883488: %w", err)
tl_secure_value_type_gen.go#L935: return fmt.Errorf("can't decode secureValueTypeRentalAgreement#8b883488 to nil")
tl_secure_value_type_gen.go#L1012: return fmt.Errorf("can't encode secureValueTypePassportRegistration#99e3806a as nil")
tl_secure_value_type_gen.go#L1021: return fmt.Errorf("can't encode secureValueTypePassportRegistration#99e3806a as nil")
tl_secure_value_type_gen.go#L1029: return fmt.Errorf("can't decode secureValueTypePassportRegistration#99e3806a to nil")
tl_secure_value_type_gen.go#L1032: return fmt.Errorf("unable to decode secureValueTypePassportRegistration#99e3806a: %w", err)
tl_secure_value_type_gen.go#L1040: return fmt.Errorf("can't decode secureValueTypePassportRegistration#99e3806a to nil")
tl_secure_value_type_gen.go#L1114: return fmt.Errorf("can't encode secureValueTypeTemporaryRegistration#ea02ec33 as nil")
tl_secure_value_type_gen.go#L1123: return fmt.Errorf("can't encode secureValueTypeTemporaryRegistration#ea02ec33 as nil")
tl_secure_value_type_gen.go#L1131: return fmt.Errorf("can't decode secureValueTypeTemporaryRegistration#ea02ec33 to nil")
tl_secure_value_type_gen.go#L1134: return fmt.Errorf("unable to decode secureValueTypeTemporaryRegistration#ea02ec33: %w", err)
tl_secure_value_type_gen.go#L1142: return fmt.Errorf("can't decode secureValueTypeTemporaryRegistration#ea02ec33 to nil")
tl_secure_value_type_gen.go#L1216: return fmt.Errorf("can't encode secureValueTypePhone#b320aadb as nil")
tl_secure_value_type_gen.go#L1225: return fmt.Errorf("can't encode secureValueTypePhone#b320aadb as nil")
tl_secure_value_type_gen.go#L1233: return fmt.Errorf("can't decode secureValueTypePhone#b320aadb to nil")
tl_secure_value_type_gen.go#L1236: return fmt.Errorf("unable to decode secureValueTypePhone#b320aadb: %w", err)
tl_secure_value_type_gen.go#L1244: return fmt.Errorf("can't decode secureValueTypePhone#b320aadb to nil")
tl_secure_value_type_gen.go#L1318: return fmt.Errorf("can't encode secureValueTypeEmail#8e3ca7ee as nil")
tl_secure_value_type_gen.go#L1327: return fmt.Errorf("can't encode secureValueTypeEmail#8e3ca7ee as nil")
tl_secure_value_type_gen.go#L1335: return fmt.Errorf("can't decode secureValueTypeEmail#8e3ca7ee to nil")
tl_secure_value_type_gen.go#L1338: return fmt.Errorf("unable to decode secureValueTypeEmail#8e3ca7ee: %w", err)
tl_secure_value_type_gen.go#L1346: return fmt.Errorf("can't decode secureValueTypeEmail#8e3ca7ee to nil")
tl_secure_value_type_gen.go#L1419: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1426: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1433: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1440: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1447: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1454: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1461: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1468: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1475: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1482: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1489: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1496: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1503: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
tl_secure_value_type_gen.go#L1507: return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", bin.NewUnexpectedID(id))
tl_secure_value_type_gen.go#L1519: return fmt.Errorf("unable to decode SecureValueTypeBox to nil")
tl_secure_value_type_gen.go#L1523: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_secure_value_type_gen.go#L1532: return fmt.Errorf("unable to encode SecureValueTypeClass as nil")
tl_secure_value_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_secure_value_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_secure_value_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_secure_value_vector_gen.go#L130: return fmt.Errorf("can't decode Vector to nil")
tl_secure_value_vector_gen.go#L139: return fmt.Errorf("can't decode Vector to nil")
tl_secure_value_vector_gen.go#L144: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_secure_value_vector_gen.go#L149: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_send_message_action_gen.go#L88: return fmt.Errorf("can't encode sendMessageTypingAction#16bf744e as nil")
tl_send_message_action_gen.go#L97: return fmt.Errorf("can't encode sendMessageTypingAction#16bf744e as nil")
tl_send_message_action_gen.go#L105: return fmt.Errorf("can't decode sendMessageTypingAction#16bf744e to nil")
tl_send_message_action_gen.go#L108: return fmt.Errorf("unable to decode sendMessageTypingAction#16bf744e: %w", err)
tl_send_message_action_gen.go#L116: return fmt.Errorf("can't decode sendMessageTypingAction#16bf744e to nil")
tl_send_message_action_gen.go#L191: return fmt.Errorf("can't encode sendMessageCancelAction#fd5ec8f5 as nil")
tl_send_message_action_gen.go#L200: return fmt.Errorf("can't encode sendMessageCancelAction#fd5ec8f5 as nil")
tl_send_message_action_gen.go#L208: return fmt.Errorf("can't decode sendMessageCancelAction#fd5ec8f5 to nil")
tl_send_message_action_gen.go#L211: return fmt.Errorf("unable to decode sendMessageCancelAction#fd5ec8f5: %w", err)
tl_send_message_action_gen.go#L219: return fmt.Errorf("can't decode sendMessageCancelAction#fd5ec8f5 to nil")
tl_send_message_action_gen.go#L293: return fmt.Errorf("can't encode sendMessageRecordVideoAction#a187d66f as nil")
tl_send_message_action_gen.go#L302: return fmt.Errorf("can't encode sendMessageRecordVideoAction#a187d66f as nil")
tl_send_message_action_gen.go#L310: return fmt.Errorf("can't decode sendMessageRecordVideoAction#a187d66f to nil")
tl_send_message_action_gen.go#L313: return fmt.Errorf("unable to decode sendMessageRecordVideoAction#a187d66f: %w", err)
tl_send_message_action_gen.go#L321: return fmt.Errorf("can't decode sendMessageRecordVideoAction#a187d66f to nil")
tl_send_message_action_gen.go#L412: return fmt.Errorf("can't encode sendMessageUploadVideoAction#e9763aec as nil")
tl_send_message_action_gen.go#L421: return fmt.Errorf("can't encode sendMessageUploadVideoAction#e9763aec as nil")
tl_send_message_action_gen.go#L435: return fmt.Errorf("can't decode sendMessageUploadVideoAction#e9763aec to nil")
tl_send_message_action_gen.go#L438: return fmt.Errorf("unable to decode sendMessageUploadVideoAction#e9763aec: %w", err)
tl_send_message_action_gen.go#L446: return fmt.Errorf("can't decode sendMessageUploadVideoAction#e9763aec to nil")
tl_send_message_action_gen.go#L451: return fmt.Errorf("unable to decode sendMessageUploadVideoAction#e9763aec: field progress: %w", err)
tl_send_message_action_gen.go#L527: return fmt.Errorf("can't encode sendMessageRecordAudioAction#d52f73f7 as nil")
tl_send_message_action_gen.go#L536: return fmt.Errorf("can't encode sendMessageRecordAudioAction#d52f73f7 as nil")
tl_send_message_action_gen.go#L544: return fmt.Errorf("can't decode sendMessageRecordAudioAction#d52f73f7 to nil")
tl_send_message_action_gen.go#L547: return fmt.Errorf("unable to decode sendMessageRecordAudioAction#d52f73f7: %w", err)
tl_send_message_action_gen.go#L555: return fmt.Errorf("can't decode sendMessageRecordAudioAction#d52f73f7 to nil")
tl_send_message_action_gen.go#L646: return fmt.Errorf("can't encode sendMessageUploadAudioAction#f351d7ab as nil")
tl_send_message_action_gen.go#L655: return fmt.Errorf("can't encode sendMessageUploadAudioAction#f351d7ab as nil")
tl_send_message_action_gen.go#L669: return fmt.Errorf("can't decode sendMessageUploadAudioAction#f351d7ab to nil")
tl_send_message_action_gen.go#L672: return fmt.Errorf("unable to decode sendMessageUploadAudioAction#f351d7ab: %w", err)
tl_send_message_action_gen.go#L680: return fmt.Errorf("can't decode sendMessageUploadAudioAction#f351d7ab to nil")
tl_send_message_action_gen.go#L685: return fmt.Errorf("unable to decode sendMessageUploadAudioAction#f351d7ab: field progress: %w", err)
tl_send_message_action_gen.go#L778: return fmt.Errorf("can't encode sendMessageUploadPhotoAction#d1d34a26 as nil")
tl_send_message_action_gen.go#L787: return fmt.Errorf("can't encode sendMessageUploadPhotoAction#d1d34a26 as nil")
tl_send_message_action_gen.go#L801: return fmt.Errorf("can't decode sendMessageUploadPhotoAction#d1d34a26 to nil")
tl_send_message_action_gen.go#L804: return fmt.Errorf("unable to decode sendMessageUploadPhotoAction#d1d34a26: %w", err)
tl_send_message_action_gen.go#L812: return fmt.Errorf("can't decode sendMessageUploadPhotoAction#d1d34a26 to nil")
tl_send_message_action_gen.go#L817: return fmt.Errorf("unable to decode sendMessageUploadPhotoAction#d1d34a26: field progress: %w", err)
tl_send_message_action_gen.go#L910: return fmt.Errorf("can't encode sendMessageUploadDocumentAction#aa0cd9e4 as nil")
tl_send_message_action_gen.go#L919: return fmt.Errorf("can't encode sendMessageUploadDocumentAction#aa0cd9e4 as nil")
tl_send_message_action_gen.go#L933: return fmt.Errorf("can't decode sendMessageUploadDocumentAction#aa0cd9e4 to nil")
tl_send_message_action_gen.go#L936: return fmt.Errorf("unable to decode sendMessageUploadDocumentAction#aa0cd9e4: %w", err)
tl_send_message_action_gen.go#L944: return fmt.Errorf("can't decode sendMessageUploadDocumentAction#aa0cd9e4 to nil")
tl_send_message_action_gen.go#L949: return fmt.Errorf("unable to decode sendMessageUploadDocumentAction#aa0cd9e4: field progress: %w", err)
tl_send_message_action_gen.go#L1025: return fmt.Errorf("can't encode sendMessageGeoLocationAction#176f8ba1 as nil")
tl_send_message_action_gen.go#L1034: return fmt.Errorf("can't encode sendMessageGeoLocationAction#176f8ba1 as nil")
tl_send_message_action_gen.go#L1042: return fmt.Errorf("can't decode sendMessageGeoLocationAction#176f8ba1 to nil")
tl_send_message_action_gen.go#L1045: return fmt.Errorf("unable to decode sendMessageGeoLocationAction#176f8ba1: %w", err)
tl_send_message_action_gen.go#L1053: return fmt.Errorf("can't decode sendMessageGeoLocationAction#176f8ba1 to nil")
tl_send_message_action_gen.go#L1127: return fmt.Errorf("can't encode sendMessageChooseContactAction#628cbc6f as nil")
tl_send_message_action_gen.go#L1136: return fmt.Errorf("can't encode sendMessageChooseContactAction#628cbc6f as nil")
tl_send_message_action_gen.go#L1144: return fmt.Errorf("can't decode sendMessageChooseContactAction#628cbc6f to nil")
tl_send_message_action_gen.go#L1147: return fmt.Errorf("unable to decode sendMessageChooseContactAction#628cbc6f: %w", err)
tl_send_message_action_gen.go#L1155: return fmt.Errorf("can't decode sendMessageChooseContactAction#628cbc6f to nil")
tl_send_message_action_gen.go#L1229: return fmt.Errorf("can't encode sendMessageGamePlayAction#dd6a8f48 as nil")
tl_send_message_action_gen.go#L1238: return fmt.Errorf("can't encode sendMessageGamePlayAction#dd6a8f48 as nil")
tl_send_message_action_gen.go#L1246: return fmt.Errorf("can't decode sendMessageGamePlayAction#dd6a8f48 to nil")
tl_send_message_action_gen.go#L1249: return fmt.Errorf("unable to decode sendMessageGamePlayAction#dd6a8f48: %w", err)
tl_send_message_action_gen.go#L1257: return fmt.Errorf("can't decode sendMessageGamePlayAction#dd6a8f48 to nil")
tl_send_message_action_gen.go#L1331: return fmt.Errorf("can't encode sendMessageRecordRoundAction#88f27fbc as nil")
tl_send_message_action_gen.go#L1340: return fmt.Errorf("can't encode sendMessageRecordRoundAction#88f27fbc as nil")
tl_send_message_action_gen.go#L1348: return fmt.Errorf("can't decode sendMessageRecordRoundAction#88f27fbc to nil")
tl_send_message_action_gen.go#L1351: return fmt.Errorf("unable to decode sendMessageRecordRoundAction#88f27fbc: %w", err)
tl_send_message_action_gen.go#L1359: return fmt.Errorf("can't decode sendMessageRecordRoundAction#88f27fbc to nil")
tl_send_message_action_gen.go#L1450: return fmt.Errorf("can't encode sendMessageUploadRoundAction#243e1c66 as nil")
tl_send_message_action_gen.go#L1459: return fmt.Errorf("can't encode sendMessageUploadRoundAction#243e1c66 as nil")
tl_send_message_action_gen.go#L1473: return fmt.Errorf("can't decode sendMessageUploadRoundAction#243e1c66 to nil")
tl_send_message_action_gen.go#L1476: return fmt.Errorf("unable to decode sendMessageUploadRoundAction#243e1c66: %w", err)
tl_send_message_action_gen.go#L1484: return fmt.Errorf("can't decode sendMessageUploadRoundAction#243e1c66 to nil")
tl_send_message_action_gen.go#L1489: return fmt.Errorf("unable to decode sendMessageUploadRoundAction#243e1c66: field progress: %w", err)
tl_send_message_action_gen.go#L1564: return fmt.Errorf("can't encode speakingInGroupCallAction#d92c2285 as nil")
tl_send_message_action_gen.go#L1573: return fmt.Errorf("can't encode speakingInGroupCallAction#d92c2285 as nil")
tl_send_message_action_gen.go#L1581: return fmt.Errorf("can't decode speakingInGroupCallAction#d92c2285 to nil")
tl_send_message_action_gen.go#L1584: return fmt.Errorf("unable to decode speakingInGroupCallAction#d92c2285: %w", err)
tl_send_message_action_gen.go#L1592: return fmt.Errorf("can't decode speakingInGroupCallAction#d92c2285 to nil")
tl_send_message_action_gen.go#L1682: return fmt.Errorf("can't encode sendMessageHistoryImportAction#dbda9246 as nil")
tl_send_message_action_gen.go#L1691: return fmt.Errorf("can't encode sendMessageHistoryImportAction#dbda9246 as nil")
tl_send_message_action_gen.go#L1705: return fmt.Errorf("can't decode sendMessageHistoryImportAction#dbda9246 to nil")
tl_send_message_action_gen.go#L1708: return fmt.Errorf("unable to decode sendMessageHistoryImportAction#dbda9246: %w", err)
tl_send_message_action_gen.go#L1716: return fmt.Errorf("can't decode sendMessageHistoryImportAction#dbda9246 to nil")
tl_send_message_action_gen.go#L1721: return fmt.Errorf("unable to decode sendMessageHistoryImportAction#dbda9246: field progress: %w", err)
tl_send_message_action_gen.go#L1798: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1805: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1812: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1819: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1826: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1833: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1840: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1847: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1854: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1861: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1868: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1875: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1882: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1889: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1896: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
tl_send_message_action_gen.go#L1900: return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", bin.NewUnexpectedID(id))
tl_send_message_action_gen.go#L1912: return fmt.Errorf("unable to decode SendMessageActionBox to nil")
tl_send_message_action_gen.go#L1916: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_send_message_action_gen.go#L1925: return fmt.Errorf("unable to encode SendMessageActionClass as nil")
tl_shipping_option_gen.go#L127: return fmt.Errorf("can't encode shippingOption#b6213cdf as nil")
tl_shipping_option_gen.go#L136: return fmt.Errorf("can't encode shippingOption#b6213cdf as nil")
tl_shipping_option_gen.go#L143: return fmt.Errorf("unable to encode shippingOption#b6213cdf: field prices element with index %d: %w", idx, err)
tl_shipping_option_gen.go#L167: return fmt.Errorf("can't decode shippingOption#b6213cdf to nil")
tl_shipping_option_gen.go#L170: return fmt.Errorf("unable to decode shippingOption#b6213cdf: %w", err)
tl_shipping_option_gen.go#L178: return fmt.Errorf("can't decode shippingOption#b6213cdf to nil")
tl_shipping_option_gen.go#L183: return fmt.Errorf("unable to decode shippingOption#b6213cdf: field id: %w", err)
tl_shipping_option_gen.go#L190: return fmt.Errorf("unable to decode shippingOption#b6213cdf: field title: %w", err)
tl_shipping_option_gen.go#L197: return fmt.Errorf("unable to decode shippingOption#b6213cdf: field prices: %w", err)
tl_shipping_option_gen.go#L202: return fmt.Errorf("unable to decode shippingOption#b6213cdf: field prices: %w", err)
tl_stats_abs_value_and_prev_gen.go#L117: return fmt.Errorf("can't encode statsAbsValueAndPrev#cb43acde as nil")
tl_stats_abs_value_and_prev_gen.go#L126: return fmt.Errorf("can't encode statsAbsValueAndPrev#cb43acde as nil")
tl_stats_abs_value_and_prev_gen.go#L146: return fmt.Errorf("can't decode statsAbsValueAndPrev#cb43acde to nil")
tl_stats_abs_value_and_prev_gen.go#L149: return fmt.Errorf("unable to decode statsAbsValueAndPrev#cb43acde: %w", err)
tl_stats_abs_value_and_prev_gen.go#L157: return fmt.Errorf("can't decode statsAbsValueAndPrev#cb43acde to nil")
tl_stats_abs_value_and_prev_gen.go#L162: return fmt.Errorf("unable to decode statsAbsValueAndPrev#cb43acde: field current: %w", err)
tl_stats_abs_value_and_prev_gen.go#L169: return fmt.Errorf("unable to decode statsAbsValueAndPrev#cb43acde: field previous: %w", err)
tl_stats_broadcast_stats_gen.go#L268: return fmt.Errorf("can't encode stats.broadcastStats#bdf78394 as nil")
tl_stats_broadcast_stats_gen.go#L277: return fmt.Errorf("can't encode stats.broadcastStats#bdf78394 as nil")
tl_stats_broadcast_stats_gen.go#L280: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field period: %w", err)
tl_stats_broadcast_stats_gen.go#L283: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field followers: %w", err)
tl_stats_broadcast_stats_gen.go#L286: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field views_per_post: %w", err)
tl_stats_broadcast_stats_gen.go#L289: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field shares_per_post: %w", err)
tl_stats_broadcast_stats_gen.go#L292: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field enabled_notifications: %w", err)
tl_stats_broadcast_stats_gen.go#L295: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field growth_graph is nil")
tl_stats_broadcast_stats_gen.go#L298: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field growth_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L301: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field followers_graph is nil")
tl_stats_broadcast_stats_gen.go#L304: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field followers_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L307: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field mute_graph is nil")
tl_stats_broadcast_stats_gen.go#L310: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field mute_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L313: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field top_hours_graph is nil")
tl_stats_broadcast_stats_gen.go#L316: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field top_hours_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L319: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field interactions_graph is nil")
tl_stats_broadcast_stats_gen.go#L322: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field interactions_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L325: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field iv_interactions_graph is nil")
tl_stats_broadcast_stats_gen.go#L328: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field iv_interactions_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L331: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field views_by_source_graph is nil")
tl_stats_broadcast_stats_gen.go#L334: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field views_by_source_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L337: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field new_followers_by_source_graph is nil")
tl_stats_broadcast_stats_gen.go#L340: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field new_followers_by_source_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L343: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field languages_graph is nil")
tl_stats_broadcast_stats_gen.go#L346: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field languages_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L351: return fmt.Errorf("unable to encode stats.broadcastStats#bdf78394: field recent_message_interactions element with index %d: %w", idx, err)
tl_stats_broadcast_stats_gen.go#L435: return fmt.Errorf("can't decode stats.broadcastStats#bdf78394 to nil")
tl_stats_broadcast_stats_gen.go#L438: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: %w", err)
tl_stats_broadcast_stats_gen.go#L446: return fmt.Errorf("can't decode stats.broadcastStats#bdf78394 to nil")
tl_stats_broadcast_stats_gen.go#L450: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field period: %w", err)
tl_stats_broadcast_stats_gen.go#L455: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field followers: %w", err)
tl_stats_broadcast_stats_gen.go#L460: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field views_per_post: %w", err)
tl_stats_broadcast_stats_gen.go#L465: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field shares_per_post: %w", err)
tl_stats_broadcast_stats_gen.go#L470: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field enabled_notifications: %w", err)
tl_stats_broadcast_stats_gen.go#L476: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field growth_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L483: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field followers_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L490: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field mute_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L497: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field top_hours_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L504: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field interactions_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L511: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field iv_interactions_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L518: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field views_by_source_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L525: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field new_followers_by_source_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L532: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field languages_graph: %w", err)
tl_stats_broadcast_stats_gen.go#L539: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field recent_message_interactions: %w", err)
tl_stats_broadcast_stats_gen.go#L544: return fmt.Errorf("unable to decode stats.broadcastStats#bdf78394: field recent_message_interactions: %w", err)
tl_stats_date_range_days_gen.go#L119: return fmt.Errorf("can't encode statsDateRangeDays#b637edaf as nil")
tl_stats_date_range_days_gen.go#L128: return fmt.Errorf("can't encode statsDateRangeDays#b637edaf as nil")
tl_stats_date_range_days_gen.go#L148: return fmt.Errorf("can't decode statsDateRangeDays#b637edaf to nil")
tl_stats_date_range_days_gen.go#L151: return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: %w", err)
tl_stats_date_range_days_gen.go#L159: return fmt.Errorf("can't decode statsDateRangeDays#b637edaf to nil")
tl_stats_date_range_days_gen.go#L164: return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: field min_date: %w", err)
tl_stats_date_range_days_gen.go#L171: return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: field max_date: %w", err)
tl_stats_get_broadcast_stats_gen.go#L128: return fmt.Errorf("can't encode stats.getBroadcastStats#ab42441a as nil")
tl_stats_get_broadcast_stats_gen.go#L137: return fmt.Errorf("can't encode stats.getBroadcastStats#ab42441a as nil")
tl_stats_get_broadcast_stats_gen.go#L143: return fmt.Errorf("unable to encode stats.getBroadcastStats#ab42441a: field flags: %w", err)
tl_stats_get_broadcast_stats_gen.go#L146: return fmt.Errorf("unable to encode stats.getBroadcastStats#ab42441a: field channel is nil")
tl_stats_get_broadcast_stats_gen.go#L149: return fmt.Errorf("unable to encode stats.getBroadcastStats#ab42441a: field channel: %w", err)
tl_stats_get_broadcast_stats_gen.go#L183: return fmt.Errorf("can't decode stats.getBroadcastStats#ab42441a to nil")
tl_stats_get_broadcast_stats_gen.go#L186: return fmt.Errorf("unable to decode stats.getBroadcastStats#ab42441a: %w", err)
tl_stats_get_broadcast_stats_gen.go#L194: return fmt.Errorf("can't decode stats.getBroadcastStats#ab42441a to nil")
tl_stats_get_broadcast_stats_gen.go#L198: return fmt.Errorf("unable to decode stats.getBroadcastStats#ab42441a: field flags: %w", err)
tl_stats_get_broadcast_stats_gen.go#L205: return fmt.Errorf("unable to decode stats.getBroadcastStats#ab42441a: field channel: %w", err)
tl_stats_get_megagroup_stats_gen.go#L131: return fmt.Errorf("can't encode stats.getMegagroupStats#dcdf8607 as nil")
tl_stats_get_megagroup_stats_gen.go#L140: return fmt.Errorf("can't encode stats.getMegagroupStats#dcdf8607 as nil")
tl_stats_get_megagroup_stats_gen.go#L146: return fmt.Errorf("unable to encode stats.getMegagroupStats#dcdf8607: field flags: %w", err)
tl_stats_get_megagroup_stats_gen.go#L149: return fmt.Errorf("unable to encode stats.getMegagroupStats#dcdf8607: field channel is nil")
tl_stats_get_megagroup_stats_gen.go#L152: return fmt.Errorf("unable to encode stats.getMegagroupStats#dcdf8607: field channel: %w", err)
tl_stats_get_megagroup_stats_gen.go#L186: return fmt.Errorf("can't decode stats.getMegagroupStats#dcdf8607 to nil")
tl_stats_get_megagroup_stats_gen.go#L189: return fmt.Errorf("unable to decode stats.getMegagroupStats#dcdf8607: %w", err)
tl_stats_get_megagroup_stats_gen.go#L197: return fmt.Errorf("can't decode stats.getMegagroupStats#dcdf8607 to nil")
tl_stats_get_megagroup_stats_gen.go#L201: return fmt.Errorf("unable to decode stats.getMegagroupStats#dcdf8607: field flags: %w", err)
tl_stats_get_megagroup_stats_gen.go#L208: return fmt.Errorf("unable to decode stats.getMegagroupStats#dcdf8607: field channel: %w", err)
tl_stats_get_message_public_forwards_gen.go#L178: return fmt.Errorf("can't encode stats.getMessagePublicForwards#5630281b as nil")
tl_stats_get_message_public_forwards_gen.go#L187: return fmt.Errorf("can't encode stats.getMessagePublicForwards#5630281b as nil")
tl_stats_get_message_public_forwards_gen.go#L190: return fmt.Errorf("unable to encode stats.getMessagePublicForwards#5630281b: field channel is nil")
tl_stats_get_message_public_forwards_gen.go#L193: return fmt.Errorf("unable to encode stats.getMessagePublicForwards#5630281b: field channel: %w", err)
tl_stats_get_message_public_forwards_gen.go#L198: return fmt.Errorf("unable to encode stats.getMessagePublicForwards#5630281b: field offset_peer is nil")
tl_stats_get_message_public_forwards_gen.go#L201: return fmt.Errorf("unable to encode stats.getMessagePublicForwards#5630281b: field offset_peer: %w", err)
tl_stats_get_message_public_forwards_gen.go#L246: return fmt.Errorf("can't decode stats.getMessagePublicForwards#5630281b to nil")
tl_stats_get_message_public_forwards_gen.go#L249: return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5630281b: %w", err)
tl_stats_get_message_public_forwards_gen.go#L257: return fmt.Errorf("can't decode stats.getMessagePublicForwards#5630281b to nil")
tl_stats_get_message_public_forwards_gen.go#L262: return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5630281b: field channel: %w", err)
tl_stats_get_message_public_forwards_gen.go#L269: return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5630281b: field msg_id: %w", err)
tl_stats_get_message_public_forwards_gen.go#L276: return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5630281b: field offset_rate: %w", err)
tl_stats_get_message_public_forwards_gen.go#L283: return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5630281b: field offset_peer: %w", err)
tl_stats_get_message_public_forwards_gen.go#L290: return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5630281b: field offset_id: %w", err)
tl_stats_get_message_public_forwards_gen.go#L297: return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5630281b: field limit: %w", err)
tl_stats_get_message_stats_gen.go#L139: return fmt.Errorf("can't encode stats.getMessageStats#b6e0a3f5 as nil")
tl_stats_get_message_stats_gen.go#L148: return fmt.Errorf("can't encode stats.getMessageStats#b6e0a3f5 as nil")
tl_stats_get_message_stats_gen.go#L154: return fmt.Errorf("unable to encode stats.getMessageStats#b6e0a3f5: field flags: %w", err)
tl_stats_get_message_stats_gen.go#L157: return fmt.Errorf("unable to encode stats.getMessageStats#b6e0a3f5: field channel is nil")
tl_stats_get_message_stats_gen.go#L160: return fmt.Errorf("unable to encode stats.getMessageStats#b6e0a3f5: field channel: %w", err)
tl_stats_get_message_stats_gen.go#L200: return fmt.Errorf("can't decode stats.getMessageStats#b6e0a3f5 to nil")
tl_stats_get_message_stats_gen.go#L203: return fmt.Errorf("unable to decode stats.getMessageStats#b6e0a3f5: %w", err)
tl_stats_get_message_stats_gen.go#L211: return fmt.Errorf("can't decode stats.getMessageStats#b6e0a3f5 to nil")
tl_stats_get_message_stats_gen.go#L215: return fmt.Errorf("unable to decode stats.getMessageStats#b6e0a3f5: field flags: %w", err)
tl_stats_get_message_stats_gen.go#L222: return fmt.Errorf("unable to decode stats.getMessageStats#b6e0a3f5: field channel: %w", err)
tl_stats_get_message_stats_gen.go#L229: return fmt.Errorf("unable to decode stats.getMessageStats#b6e0a3f5: field msg_id: %w", err)
tl_stats_graph_gen.go#L110: return fmt.Errorf("can't encode statsGraphAsync#4a27eb2d as nil")
tl_stats_graph_gen.go#L119: return fmt.Errorf("can't encode statsGraphAsync#4a27eb2d as nil")
tl_stats_graph_gen.go#L133: return fmt.Errorf("can't decode statsGraphAsync#4a27eb2d to nil")
tl_stats_graph_gen.go#L136: return fmt.Errorf("unable to decode statsGraphAsync#4a27eb2d: %w", err)
tl_stats_graph_gen.go#L144: return fmt.Errorf("can't decode statsGraphAsync#4a27eb2d to nil")
tl_stats_graph_gen.go#L149: return fmt.Errorf("unable to decode statsGraphAsync#4a27eb2d: field token: %w", err)
tl_stats_graph_gen.go#L245: return fmt.Errorf("can't encode statsGraphError#bedc9822 as nil")
tl_stats_graph_gen.go#L254: return fmt.Errorf("can't encode statsGraphError#bedc9822 as nil")
tl_stats_graph_gen.go#L268: return fmt.Errorf("can't decode statsGraphError#bedc9822 to nil")
tl_stats_graph_gen.go#L271: return fmt.Errorf("unable to decode statsGraphError#bedc9822: %w", err)
tl_stats_graph_gen.go#L279: return fmt.Errorf("can't decode statsGraphError#bedc9822 to nil")
tl_stats_graph_gen.go#L284: return fmt.Errorf("unable to decode statsGraphError#bedc9822: field error: %w", err)
tl_stats_graph_gen.go#L405: return fmt.Errorf("can't encode statsGraph#8ea464b6 as nil")
tl_stats_graph_gen.go#L414: return fmt.Errorf("can't encode statsGraph#8ea464b6 as nil")
tl_stats_graph_gen.go#L420: return fmt.Errorf("unable to encode statsGraph#8ea464b6: field flags: %w", err)
tl_stats_graph_gen.go#L423: return fmt.Errorf("unable to encode statsGraph#8ea464b6: field json: %w", err)
tl_stats_graph_gen.go#L454: return fmt.Errorf("can't decode statsGraph#8ea464b6 to nil")
tl_stats_graph_gen.go#L457: return fmt.Errorf("unable to decode statsGraph#8ea464b6: %w", err)
tl_stats_graph_gen.go#L465: return fmt.Errorf("can't decode statsGraph#8ea464b6 to nil")
tl_stats_graph_gen.go#L469: return fmt.Errorf("unable to decode statsGraph#8ea464b6: field flags: %w", err)
tl_stats_graph_gen.go#L474: return fmt.Errorf("unable to decode statsGraph#8ea464b6: field json: %w", err)
tl_stats_graph_gen.go#L480: return fmt.Errorf("unable to decode statsGraph#8ea464b6: field zoom_token: %w", err)
tl_stats_graph_gen.go#L545: return nil, fmt.Errorf("unable to decode StatsGraphClass: %w", err)
tl_stats_graph_gen.go#L552: return nil, fmt.Errorf("unable to decode StatsGraphClass: %w", err)
tl_stats_graph_gen.go#L559: return nil, fmt.Errorf("unable to decode StatsGraphClass: %w", err)
tl_stats_graph_gen.go#L563: return nil, fmt.Errorf("unable to decode StatsGraphClass: %w", bin.NewUnexpectedID(id))
tl_stats_graph_gen.go#L575: return fmt.Errorf("unable to decode StatsGraphBox to nil")
tl_stats_graph_gen.go#L579: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_stats_graph_gen.go#L588: return fmt.Errorf("unable to encode StatsGraphClass as nil")
tl_stats_group_top_admin_gen.go#L147: return fmt.Errorf("can't encode statsGroupTopAdmin#6014f412 as nil")
tl_stats_group_top_admin_gen.go#L156: return fmt.Errorf("can't encode statsGroupTopAdmin#6014f412 as nil")
tl_stats_group_top_admin_gen.go#L188: return fmt.Errorf("can't decode statsGroupTopAdmin#6014f412 to nil")
tl_stats_group_top_admin_gen.go#L191: return fmt.Errorf("unable to decode statsGroupTopAdmin#6014f412: %w", err)
tl_stats_group_top_admin_gen.go#L199: return fmt.Errorf("can't decode statsGroupTopAdmin#6014f412 to nil")
tl_stats_group_top_admin_gen.go#L204: return fmt.Errorf("unable to decode statsGroupTopAdmin#6014f412: field user_id: %w", err)
tl_stats_group_top_admin_gen.go#L211: return fmt.Errorf("unable to decode statsGroupTopAdmin#6014f412: field deleted: %w", err)
tl_stats_group_top_admin_gen.go#L218: return fmt.Errorf("unable to decode statsGroupTopAdmin#6014f412: field kicked: %w", err)
tl_stats_group_top_admin_gen.go#L225: return fmt.Errorf("unable to decode statsGroupTopAdmin#6014f412: field banned: %w", err)
tl_stats_group_top_inviter_gen.go#L119: return fmt.Errorf("can't encode statsGroupTopInviter#31962a4c as nil")
tl_stats_group_top_inviter_gen.go#L128: return fmt.Errorf("can't encode statsGroupTopInviter#31962a4c as nil")
tl_stats_group_top_inviter_gen.go#L148: return fmt.Errorf("can't decode statsGroupTopInviter#31962a4c to nil")
tl_stats_group_top_inviter_gen.go#L151: return fmt.Errorf("unable to decode statsGroupTopInviter#31962a4c: %w", err)
tl_stats_group_top_inviter_gen.go#L159: return fmt.Errorf("can't decode statsGroupTopInviter#31962a4c to nil")
tl_stats_group_top_inviter_gen.go#L164: return fmt.Errorf("unable to decode statsGroupTopInviter#31962a4c: field user_id: %w", err)
tl_stats_group_top_inviter_gen.go#L171: return fmt.Errorf("unable to decode statsGroupTopInviter#31962a4c: field invitations: %w", err)
tl_stats_group_top_poster_gen.go#L130: return fmt.Errorf("can't encode statsGroupTopPoster#18f3d0f7 as nil")
tl_stats_group_top_poster_gen.go#L139: return fmt.Errorf("can't encode statsGroupTopPoster#18f3d0f7 as nil")
tl_stats_group_top_poster_gen.go#L165: return fmt.Errorf("can't decode statsGroupTopPoster#18f3d0f7 to nil")
tl_stats_group_top_poster_gen.go#L168: return fmt.Errorf("unable to decode statsGroupTopPoster#18f3d0f7: %w", err)
tl_stats_group_top_poster_gen.go#L176: return fmt.Errorf("can't decode statsGroupTopPoster#18f3d0f7 to nil")
tl_stats_group_top_poster_gen.go#L181: return fmt.Errorf("unable to decode statsGroupTopPoster#18f3d0f7: field user_id: %w", err)
tl_stats_group_top_poster_gen.go#L188: return fmt.Errorf("unable to decode statsGroupTopPoster#18f3d0f7: field messages: %w", err)
tl_stats_group_top_poster_gen.go#L195: return fmt.Errorf("unable to decode statsGroupTopPoster#18f3d0f7: field avg_chars: %w", err)
tl_stats_load_async_graph_gen.go#L136: return fmt.Errorf("can't encode stats.loadAsyncGraph#621d5fa0 as nil")
tl_stats_load_async_graph_gen.go#L145: return fmt.Errorf("can't encode stats.loadAsyncGraph#621d5fa0 as nil")
tl_stats_load_async_graph_gen.go#L151: return fmt.Errorf("unable to encode stats.loadAsyncGraph#621d5fa0: field flags: %w", err)
tl_stats_load_async_graph_gen.go#L183: return fmt.Errorf("can't decode stats.loadAsyncGraph#621d5fa0 to nil")
tl_stats_load_async_graph_gen.go#L186: return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: %w", err)
tl_stats_load_async_graph_gen.go#L194: return fmt.Errorf("can't decode stats.loadAsyncGraph#621d5fa0 to nil")
tl_stats_load_async_graph_gen.go#L198: return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field flags: %w", err)
tl_stats_load_async_graph_gen.go#L204: return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field token: %w", err)
tl_stats_load_async_graph_gen.go#L211: return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field x: %w", err)
tl_stats_megagroup_stats_gen.go#L284: return fmt.Errorf("can't encode stats.megagroupStats#ef7ff916 as nil")
tl_stats_megagroup_stats_gen.go#L293: return fmt.Errorf("can't encode stats.megagroupStats#ef7ff916 as nil")
tl_stats_megagroup_stats_gen.go#L296: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field period: %w", err)
tl_stats_megagroup_stats_gen.go#L299: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field members: %w", err)
tl_stats_megagroup_stats_gen.go#L302: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field messages: %w", err)
tl_stats_megagroup_stats_gen.go#L305: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field viewers: %w", err)
tl_stats_megagroup_stats_gen.go#L308: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field posters: %w", err)
tl_stats_megagroup_stats_gen.go#L311: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field growth_graph is nil")
tl_stats_megagroup_stats_gen.go#L314: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field growth_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L317: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field members_graph is nil")
tl_stats_megagroup_stats_gen.go#L320: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field members_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L323: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field new_members_by_source_graph is nil")
tl_stats_megagroup_stats_gen.go#L326: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field new_members_by_source_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L329: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field languages_graph is nil")
tl_stats_megagroup_stats_gen.go#L332: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field languages_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L335: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field messages_graph is nil")
tl_stats_megagroup_stats_gen.go#L338: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field messages_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L341: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field actions_graph is nil")
tl_stats_megagroup_stats_gen.go#L344: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field actions_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L347: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_hours_graph is nil")
tl_stats_megagroup_stats_gen.go#L350: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_hours_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L353: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field weekdays_graph is nil")
tl_stats_megagroup_stats_gen.go#L356: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field weekdays_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L361: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_posters element with index %d: %w", idx, err)
tl_stats_megagroup_stats_gen.go#L367: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_admins element with index %d: %w", idx, err)
tl_stats_megagroup_stats_gen.go#L373: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_inviters element with index %d: %w", idx, err)
tl_stats_megagroup_stats_gen.go#L379: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field users element with index %d is nil", idx)
tl_stats_megagroup_stats_gen.go#L382: return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field users element with index %d: %w", idx, err)
tl_stats_megagroup_stats_gen.go#L481: return fmt.Errorf("can't decode stats.megagroupStats#ef7ff916 to nil")
tl_stats_megagroup_stats_gen.go#L484: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: %w", err)
tl_stats_megagroup_stats_gen.go#L492: return fmt.Errorf("can't decode stats.megagroupStats#ef7ff916 to nil")
tl_stats_megagroup_stats_gen.go#L496: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field period: %w", err)
tl_stats_megagroup_stats_gen.go#L501: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field members: %w", err)
tl_stats_megagroup_stats_gen.go#L506: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field messages: %w", err)
tl_stats_megagroup_stats_gen.go#L511: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field viewers: %w", err)
tl_stats_megagroup_stats_gen.go#L516: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field posters: %w", err)
tl_stats_megagroup_stats_gen.go#L522: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field growth_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L529: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field members_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L536: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field new_members_by_source_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L543: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field languages_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L550: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field messages_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L557: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field actions_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L564: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_hours_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L571: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field weekdays_graph: %w", err)
tl_stats_megagroup_stats_gen.go#L578: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_posters: %w", err)
tl_stats_megagroup_stats_gen.go#L583: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_posters: %w", err)
tl_stats_megagroup_stats_gen.go#L591: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_admins: %w", err)
tl_stats_megagroup_stats_gen.go#L596: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_admins: %w", err)
tl_stats_megagroup_stats_gen.go#L604: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_inviters: %w", err)
tl_stats_megagroup_stats_gen.go#L609: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_inviters: %w", err)
tl_stats_megagroup_stats_gen.go#L617: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field users: %w", err)
tl_stats_megagroup_stats_gen.go#L622: return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field users: %w", err)
tl_stats_message_stats_gen.go#L105: return fmt.Errorf("can't encode stats.messageStats#8999f295 as nil")
tl_stats_message_stats_gen.go#L114: return fmt.Errorf("can't encode stats.messageStats#8999f295 as nil")
tl_stats_message_stats_gen.go#L117: return fmt.Errorf("unable to encode stats.messageStats#8999f295: field views_graph is nil")
tl_stats_message_stats_gen.go#L120: return fmt.Errorf("unable to encode stats.messageStats#8999f295: field views_graph: %w", err)
tl_stats_message_stats_gen.go#L133: return fmt.Errorf("can't decode stats.messageStats#8999f295 to nil")
tl_stats_message_stats_gen.go#L136: return fmt.Errorf("unable to decode stats.messageStats#8999f295: %w", err)
tl_stats_message_stats_gen.go#L144: return fmt.Errorf("can't decode stats.messageStats#8999f295 to nil")
tl_stats_message_stats_gen.go#L149: return fmt.Errorf("unable to decode stats.messageStats#8999f295: field views_graph: %w", err)
tl_stats_percent_value_gen.go#L120: return fmt.Errorf("can't encode statsPercentValue#cbce2fe0 as nil")
tl_stats_percent_value_gen.go#L129: return fmt.Errorf("can't encode statsPercentValue#cbce2fe0 as nil")
tl_stats_percent_value_gen.go#L149: return fmt.Errorf("can't decode statsPercentValue#cbce2fe0 to nil")
tl_stats_percent_value_gen.go#L152: return fmt.Errorf("unable to decode statsPercentValue#cbce2fe0: %w", err)
tl_stats_percent_value_gen.go#L160: return fmt.Errorf("can't decode statsPercentValue#cbce2fe0 to nil")
tl_stats_percent_value_gen.go#L165: return fmt.Errorf("unable to decode statsPercentValue#cbce2fe0: field part: %w", err)
tl_stats_percent_value_gen.go#L172: return fmt.Errorf("unable to decode statsPercentValue#cbce2fe0: field total: %w", err)
tl_stats_url_gen.go#L105: return fmt.Errorf("can't encode statsURL#47a971e0 as nil")
tl_stats_url_gen.go#L114: return fmt.Errorf("can't encode statsURL#47a971e0 as nil")
tl_stats_url_gen.go#L128: return fmt.Errorf("can't decode statsURL#47a971e0 to nil")
tl_stats_url_gen.go#L131: return fmt.Errorf("unable to decode statsURL#47a971e0: %w", err)
tl_stats_url_gen.go#L139: return fmt.Errorf("can't decode statsURL#47a971e0 to nil")
tl_stats_url_gen.go#L144: return fmt.Errorf("unable to decode statsURL#47a971e0: field url: %w", err)
tl_sticker_pack_gen.go#L121: return fmt.Errorf("can't encode stickerPack#12b299d4 as nil")
tl_sticker_pack_gen.go#L130: return fmt.Errorf("can't encode stickerPack#12b299d4 as nil")
tl_sticker_pack_gen.go#L153: return fmt.Errorf("can't decode stickerPack#12b299d4 to nil")
tl_sticker_pack_gen.go#L156: return fmt.Errorf("unable to decode stickerPack#12b299d4: %w", err)
tl_sticker_pack_gen.go#L164: return fmt.Errorf("can't decode stickerPack#12b299d4 to nil")
tl_sticker_pack_gen.go#L169: return fmt.Errorf("unable to decode stickerPack#12b299d4: field emoticon: %w", err)
tl_sticker_pack_gen.go#L176: return fmt.Errorf("unable to decode stickerPack#12b299d4: field documents: %w", err)
tl_sticker_pack_gen.go#L181: return fmt.Errorf("unable to decode stickerPack#12b299d4: field documents: %w", err)
tl_sticker_set_covered_class_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_sticker_set_covered_class_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_sticker_set_covered_class_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d is nil", idx)
tl_sticker_set_covered_class_vector_gen.go#L119: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_sticker_set_covered_class_vector_gen.go#L138: return fmt.Errorf("can't decode Vector to nil")
tl_sticker_set_covered_class_vector_gen.go#L147: return fmt.Errorf("can't decode Vector to nil")
tl_sticker_set_covered_class_vector_gen.go#L152: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_sticker_set_covered_class_vector_gen.go#L157: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_sticker_set_covered_gen.go#L116: return fmt.Errorf("can't encode stickerSetCovered#6410a5d2 as nil")
tl_sticker_set_covered_gen.go#L125: return fmt.Errorf("can't encode stickerSetCovered#6410a5d2 as nil")
tl_sticker_set_covered_gen.go#L128: return fmt.Errorf("unable to encode stickerSetCovered#6410a5d2: field set: %w", err)
tl_sticker_set_covered_gen.go#L131: return fmt.Errorf("unable to encode stickerSetCovered#6410a5d2: field cover is nil")
tl_sticker_set_covered_gen.go#L134: return fmt.Errorf("unable to encode stickerSetCovered#6410a5d2: field cover: %w", err)
tl_sticker_set_covered_gen.go#L152: return fmt.Errorf("can't decode stickerSetCovered#6410a5d2 to nil")
tl_sticker_set_covered_gen.go#L155: return fmt.Errorf("unable to decode stickerSetCovered#6410a5d2: %w", err)
tl_sticker_set_covered_gen.go#L163: return fmt.Errorf("can't decode stickerSetCovered#6410a5d2 to nil")
tl_sticker_set_covered_gen.go#L167: return fmt.Errorf("unable to decode stickerSetCovered#6410a5d2: field set: %w", err)
tl_sticker_set_covered_gen.go#L173: return fmt.Errorf("unable to decode stickerSetCovered#6410a5d2: field cover: %w", err)
tl_sticker_set_covered_gen.go#L277: return fmt.Errorf("can't encode stickerSetMultiCovered#3407e51b as nil")
tl_sticker_set_covered_gen.go#L286: return fmt.Errorf("can't encode stickerSetMultiCovered#3407e51b as nil")
tl_sticker_set_covered_gen.go#L289: return fmt.Errorf("unable to encode stickerSetMultiCovered#3407e51b: field set: %w", err)
tl_sticker_set_covered_gen.go#L294: return fmt.Errorf("unable to encode stickerSetMultiCovered#3407e51b: field covers element with index %d is nil", idx)
tl_sticker_set_covered_gen.go#L297: return fmt.Errorf("unable to encode stickerSetMultiCovered#3407e51b: field covers element with index %d: %w", idx, err)
tl_sticker_set_covered_gen.go#L321: return fmt.Errorf("can't decode stickerSetMultiCovered#3407e51b to nil")
tl_sticker_set_covered_gen.go#L324: return fmt.Errorf("unable to decode stickerSetMultiCovered#3407e51b: %w", err)
tl_sticker_set_covered_gen.go#L332: return fmt.Errorf("can't decode stickerSetMultiCovered#3407e51b to nil")
tl_sticker_set_covered_gen.go#L336: return fmt.Errorf("unable to decode stickerSetMultiCovered#3407e51b: field set: %w", err)
tl_sticker_set_covered_gen.go#L342: return fmt.Errorf("unable to decode stickerSetMultiCovered#3407e51b: field covers: %w", err)
tl_sticker_set_covered_gen.go#L347: return fmt.Errorf("unable to decode stickerSetMultiCovered#3407e51b: field covers: %w", err)
tl_sticker_set_covered_gen.go#L415: return nil, fmt.Errorf("unable to decode StickerSetCoveredClass: %w", err)
tl_sticker_set_covered_gen.go#L422: return nil, fmt.Errorf("unable to decode StickerSetCoveredClass: %w", err)
tl_sticker_set_covered_gen.go#L426: return nil, fmt.Errorf("unable to decode StickerSetCoveredClass: %w", bin.NewUnexpectedID(id))
tl_sticker_set_covered_gen.go#L438: return fmt.Errorf("unable to decode StickerSetCoveredBox to nil")
tl_sticker_set_covered_gen.go#L442: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_sticker_set_covered_gen.go#L451: return fmt.Errorf("unable to encode StickerSetCoveredClass as nil")
tl_sticker_set_gen.go#L285: return fmt.Errorf("can't encode stickerSet#d7df217a as nil")
tl_sticker_set_gen.go#L294: return fmt.Errorf("can't encode stickerSet#d7df217a as nil")
tl_sticker_set_gen.go#L321: return fmt.Errorf("unable to encode stickerSet#d7df217a: field flags: %w", err)
tl_sticker_set_gen.go#L334: return fmt.Errorf("unable to encode stickerSet#d7df217a: field thumbs element with index %d is nil", idx)
tl_sticker_set_gen.go#L337: return fmt.Errorf("unable to encode stickerSet#d7df217a: field thumbs element with index %d: %w", idx, err)
tl_sticker_set_gen.go#L517: return fmt.Errorf("can't decode stickerSet#d7df217a to nil")
tl_sticker_set_gen.go#L520: return fmt.Errorf("unable to decode stickerSet#d7df217a: %w", err)
tl_sticker_set_gen.go#L528: return fmt.Errorf("can't decode stickerSet#d7df217a to nil")
tl_sticker_set_gen.go#L532: return fmt.Errorf("unable to decode stickerSet#d7df217a: field flags: %w", err)
tl_sticker_set_gen.go#L542: return fmt.Errorf("unable to decode stickerSet#d7df217a: field installed_date: %w", err)
tl_sticker_set_gen.go#L549: return fmt.Errorf("unable to decode stickerSet#d7df217a: field id: %w", err)
tl_sticker_set_gen.go#L556: return fmt.Errorf("unable to decode stickerSet#d7df217a: field access_hash: %w", err)
tl_sticker_set_gen.go#L563: return fmt.Errorf("unable to decode stickerSet#d7df217a: field title: %w", err)
tl_sticker_set_gen.go#L570: return fmt.Errorf("unable to decode stickerSet#d7df217a: field short_name: %w", err)
tl_sticker_set_gen.go#L577: return fmt.Errorf("unable to decode stickerSet#d7df217a: field thumbs: %w", err)
tl_sticker_set_gen.go#L582: return fmt.Errorf("unable to decode stickerSet#d7df217a: field thumbs: %w", err)
tl_sticker_set_gen.go#L590: return fmt.Errorf("unable to decode stickerSet#d7df217a: field thumb_dc_id: %w", err)
tl_sticker_set_gen.go#L597: return fmt.Errorf("unable to decode stickerSet#d7df217a: field thumb_version: %w", err)
tl_sticker_set_gen.go#L604: return fmt.Errorf("unable to decode stickerSet#d7df217a: field count: %w", err)
tl_sticker_set_gen.go#L611: return fmt.Errorf("unable to decode stickerSet#d7df217a: field hash: %w", err)
tl_stickers_add_sticker_to_set_gen.go#L117: return fmt.Errorf("can't encode stickers.addStickerToSet#8653febe as nil")
tl_stickers_add_sticker_to_set_gen.go#L126: return fmt.Errorf("can't encode stickers.addStickerToSet#8653febe as nil")
tl_stickers_add_sticker_to_set_gen.go#L129: return fmt.Errorf("unable to encode stickers.addStickerToSet#8653febe: field stickerset is nil")
tl_stickers_add_sticker_to_set_gen.go#L132: return fmt.Errorf("unable to encode stickers.addStickerToSet#8653febe: field stickerset: %w", err)
tl_stickers_add_sticker_to_set_gen.go#L135: return fmt.Errorf("unable to encode stickers.addStickerToSet#8653febe: field sticker: %w", err)
tl_stickers_add_sticker_to_set_gen.go#L153: return fmt.Errorf("can't decode stickers.addStickerToSet#8653febe to nil")
tl_stickers_add_sticker_to_set_gen.go#L156: return fmt.Errorf("unable to decode stickers.addStickerToSet#8653febe: %w", err)
tl_stickers_add_sticker_to_set_gen.go#L164: return fmt.Errorf("can't decode stickers.addStickerToSet#8653febe to nil")
tl_stickers_add_sticker_to_set_gen.go#L169: return fmt.Errorf("unable to decode stickers.addStickerToSet#8653febe: field stickerset: %w", err)
tl_stickers_add_sticker_to_set_gen.go#L175: return fmt.Errorf("unable to decode stickers.addStickerToSet#8653febe: field sticker: %w", err)
tl_stickers_change_sticker_position_gen.go#L117: return fmt.Errorf("can't encode stickers.changeStickerPosition#ffb6d4ca as nil")
tl_stickers_change_sticker_position_gen.go#L126: return fmt.Errorf("can't encode stickers.changeStickerPosition#ffb6d4ca as nil")
tl_stickers_change_sticker_position_gen.go#L129: return fmt.Errorf("unable to encode stickers.changeStickerPosition#ffb6d4ca: field sticker is nil")
tl_stickers_change_sticker_position_gen.go#L132: return fmt.Errorf("unable to encode stickers.changeStickerPosition#ffb6d4ca: field sticker: %w", err)
tl_stickers_change_sticker_position_gen.go#L156: return fmt.Errorf("can't decode stickers.changeStickerPosition#ffb6d4ca to nil")
tl_stickers_change_sticker_position_gen.go#L159: return fmt.Errorf("unable to decode stickers.changeStickerPosition#ffb6d4ca: %w", err)
tl_stickers_change_sticker_position_gen.go#L167: return fmt.Errorf("can't decode stickers.changeStickerPosition#ffb6d4ca to nil")
tl_stickers_change_sticker_position_gen.go#L172: return fmt.Errorf("unable to decode stickers.changeStickerPosition#ffb6d4ca: field sticker: %w", err)
tl_stickers_change_sticker_position_gen.go#L179: return fmt.Errorf("unable to decode stickers.changeStickerPosition#ffb6d4ca: field position: %w", err)
tl_stickers_create_sticker_set_gen.go#L188: return fmt.Errorf("can't encode stickers.createStickerSet#f1036780 as nil")
tl_stickers_create_sticker_set_gen.go#L197: return fmt.Errorf("can't encode stickers.createStickerSet#f1036780 as nil")
tl_stickers_create_sticker_set_gen.go#L209: return fmt.Errorf("unable to encode stickers.createStickerSet#f1036780: field flags: %w", err)
tl_stickers_create_sticker_set_gen.go#L212: return fmt.Errorf("unable to encode stickers.createStickerSet#f1036780: field user_id is nil")
tl_stickers_create_sticker_set_gen.go#L215: return fmt.Errorf("unable to encode stickers.createStickerSet#f1036780: field user_id: %w", err)
tl_stickers_create_sticker_set_gen.go#L221: return fmt.Errorf("unable to encode stickers.createStickerSet#f1036780: field thumb is nil")
tl_stickers_create_sticker_set_gen.go#L224: return fmt.Errorf("unable to encode stickers.createStickerSet#f1036780: field thumb: %w", err)
tl_stickers_create_sticker_set_gen.go#L230: return fmt.Errorf("unable to encode stickers.createStickerSet#f1036780: field stickers element with index %d: %w", idx, err)
tl_stickers_create_sticker_set_gen.go#L315: return fmt.Errorf("can't decode stickers.createStickerSet#f1036780 to nil")
tl_stickers_create_sticker_set_gen.go#L318: return fmt.Errorf("unable to decode stickers.createStickerSet#f1036780: %w", err)
tl_stickers_create_sticker_set_gen.go#L326: return fmt.Errorf("can't decode stickers.createStickerSet#f1036780 to nil")
tl_stickers_create_sticker_set_gen.go#L330: return fmt.Errorf("unable to decode stickers.createStickerSet#f1036780: field flags: %w", err)
tl_stickers_create_sticker_set_gen.go#L338: return fmt.Errorf("unable to decode stickers.createStickerSet#f1036780: field user_id: %w", err)
tl_stickers_create_sticker_set_gen.go#L345: return fmt.Errorf("unable to decode stickers.createStickerSet#f1036780: field title: %w", err)
tl_stickers_create_sticker_set_gen.go#L352: return fmt.Errorf("unable to decode stickers.createStickerSet#f1036780: field short_name: %w", err)
tl_stickers_create_sticker_set_gen.go#L359: return fmt.Errorf("unable to decode stickers.createStickerSet#f1036780: field thumb: %w", err)
tl_stickers_create_sticker_set_gen.go#L366: return fmt.Errorf("unable to decode stickers.createStickerSet#f1036780: field stickers: %w", err)
tl_stickers_create_sticker_set_gen.go#L371: return fmt.Errorf("unable to decode stickers.createStickerSet#f1036780: field stickers: %w", err)
tl_stickers_remove_sticker_from_set_gen.go#L106: return fmt.Errorf("can't encode stickers.removeStickerFromSet#f7760f51 as nil")
tl_stickers_remove_sticker_from_set_gen.go#L115: return fmt.Errorf("can't encode stickers.removeStickerFromSet#f7760f51 as nil")
tl_stickers_remove_sticker_from_set_gen.go#L118: return fmt.Errorf("unable to encode stickers.removeStickerFromSet#f7760f51: field sticker is nil")
tl_stickers_remove_sticker_from_set_gen.go#L121: return fmt.Errorf("unable to encode stickers.removeStickerFromSet#f7760f51: field sticker: %w", err)
tl_stickers_remove_sticker_from_set_gen.go#L139: return fmt.Errorf("can't decode stickers.removeStickerFromSet#f7760f51 to nil")
tl_stickers_remove_sticker_from_set_gen.go#L142: return fmt.Errorf("unable to decode stickers.removeStickerFromSet#f7760f51: %w", err)
tl_stickers_remove_sticker_from_set_gen.go#L150: return fmt.Errorf("can't decode stickers.removeStickerFromSet#f7760f51 to nil")
tl_stickers_remove_sticker_from_set_gen.go#L155: return fmt.Errorf("unable to decode stickers.removeStickerFromSet#f7760f51: field sticker: %w", err)
tl_stickers_set_sticker_set_thumb_gen.go#L116: return fmt.Errorf("can't encode stickers.setStickerSetThumb#9a364e30 as nil")
tl_stickers_set_sticker_set_thumb_gen.go#L125: return fmt.Errorf("can't encode stickers.setStickerSetThumb#9a364e30 as nil")
tl_stickers_set_sticker_set_thumb_gen.go#L128: return fmt.Errorf("unable to encode stickers.setStickerSetThumb#9a364e30: field stickerset is nil")
tl_stickers_set_sticker_set_thumb_gen.go#L131: return fmt.Errorf("unable to encode stickers.setStickerSetThumb#9a364e30: field stickerset: %w", err)
tl_stickers_set_sticker_set_thumb_gen.go#L134: return fmt.Errorf("unable to encode stickers.setStickerSetThumb#9a364e30: field thumb is nil")
tl_stickers_set_sticker_set_thumb_gen.go#L137: return fmt.Errorf("unable to encode stickers.setStickerSetThumb#9a364e30: field thumb: %w", err)
tl_stickers_set_sticker_set_thumb_gen.go#L160: return fmt.Errorf("can't decode stickers.setStickerSetThumb#9a364e30 to nil")
tl_stickers_set_sticker_set_thumb_gen.go#L163: return fmt.Errorf("unable to decode stickers.setStickerSetThumb#9a364e30: %w", err)
tl_stickers_set_sticker_set_thumb_gen.go#L171: return fmt.Errorf("can't decode stickers.setStickerSetThumb#9a364e30 to nil")
tl_stickers_set_sticker_set_thumb_gen.go#L176: return fmt.Errorf("unable to decode stickers.setStickerSetThumb#9a364e30: field stickerset: %w", err)
tl_stickers_set_sticker_set_thumb_gen.go#L183: return fmt.Errorf("unable to decode stickers.setStickerSetThumb#9a364e30: field thumb: %w", err)
tl_storage_file_type_gen.go#L88: return fmt.Errorf("can't encode storage.fileUnknown#aa963b05 as nil")
tl_storage_file_type_gen.go#L97: return fmt.Errorf("can't encode storage.fileUnknown#aa963b05 as nil")
tl_storage_file_type_gen.go#L105: return fmt.Errorf("can't decode storage.fileUnknown#aa963b05 to nil")
tl_storage_file_type_gen.go#L108: return fmt.Errorf("unable to decode storage.fileUnknown#aa963b05: %w", err)
tl_storage_file_type_gen.go#L116: return fmt.Errorf("can't decode storage.fileUnknown#aa963b05 to nil")
tl_storage_file_type_gen.go#L190: return fmt.Errorf("can't encode storage.filePartial#40bc6f52 as nil")
tl_storage_file_type_gen.go#L199: return fmt.Errorf("can't encode storage.filePartial#40bc6f52 as nil")
tl_storage_file_type_gen.go#L207: return fmt.Errorf("can't decode storage.filePartial#40bc6f52 to nil")
tl_storage_file_type_gen.go#L210: return fmt.Errorf("unable to decode storage.filePartial#40bc6f52: %w", err)
tl_storage_file_type_gen.go#L218: return fmt.Errorf("can't decode storage.filePartial#40bc6f52 to nil")
tl_storage_file_type_gen.go#L292: return fmt.Errorf("can't encode storage.fileJpeg#7efe0e as nil")
tl_storage_file_type_gen.go#L301: return fmt.Errorf("can't encode storage.fileJpeg#7efe0e as nil")
tl_storage_file_type_gen.go#L309: return fmt.Errorf("can't decode storage.fileJpeg#7efe0e to nil")
tl_storage_file_type_gen.go#L312: return fmt.Errorf("unable to decode storage.fileJpeg#7efe0e: %w", err)
tl_storage_file_type_gen.go#L320: return fmt.Errorf("can't decode storage.fileJpeg#7efe0e to nil")
tl_storage_file_type_gen.go#L394: return fmt.Errorf("can't encode storage.fileGif#cae1aadf as nil")
tl_storage_file_type_gen.go#L403: return fmt.Errorf("can't encode storage.fileGif#cae1aadf as nil")
tl_storage_file_type_gen.go#L411: return fmt.Errorf("can't decode storage.fileGif#cae1aadf to nil")
tl_storage_file_type_gen.go#L414: return fmt.Errorf("unable to decode storage.fileGif#cae1aadf: %w", err)
tl_storage_file_type_gen.go#L422: return fmt.Errorf("can't decode storage.fileGif#cae1aadf to nil")
tl_storage_file_type_gen.go#L496: return fmt.Errorf("can't encode storage.filePng#a4f63c0 as nil")
tl_storage_file_type_gen.go#L505: return fmt.Errorf("can't encode storage.filePng#a4f63c0 as nil")
tl_storage_file_type_gen.go#L513: return fmt.Errorf("can't decode storage.filePng#a4f63c0 to nil")
tl_storage_file_type_gen.go#L516: return fmt.Errorf("unable to decode storage.filePng#a4f63c0: %w", err)
tl_storage_file_type_gen.go#L524: return fmt.Errorf("can't decode storage.filePng#a4f63c0 to nil")
tl_storage_file_type_gen.go#L598: return fmt.Errorf("can't encode storage.filePdf#ae1e508d as nil")
tl_storage_file_type_gen.go#L607: return fmt.Errorf("can't encode storage.filePdf#ae1e508d as nil")
tl_storage_file_type_gen.go#L615: return fmt.Errorf("can't decode storage.filePdf#ae1e508d to nil")
tl_storage_file_type_gen.go#L618: return fmt.Errorf("unable to decode storage.filePdf#ae1e508d: %w", err)
tl_storage_file_type_gen.go#L626: return fmt.Errorf("can't decode storage.filePdf#ae1e508d to nil")
tl_storage_file_type_gen.go#L700: return fmt.Errorf("can't encode storage.fileMp3#528a0677 as nil")
tl_storage_file_type_gen.go#L709: return fmt.Errorf("can't encode storage.fileMp3#528a0677 as nil")
tl_storage_file_type_gen.go#L717: return fmt.Errorf("can't decode storage.fileMp3#528a0677 to nil")
tl_storage_file_type_gen.go#L720: return fmt.Errorf("unable to decode storage.fileMp3#528a0677: %w", err)
tl_storage_file_type_gen.go#L728: return fmt.Errorf("can't decode storage.fileMp3#528a0677 to nil")
tl_storage_file_type_gen.go#L802: return fmt.Errorf("can't encode storage.fileMov#4b09ebbc as nil")
tl_storage_file_type_gen.go#L811: return fmt.Errorf("can't encode storage.fileMov#4b09ebbc as nil")
tl_storage_file_type_gen.go#L819: return fmt.Errorf("can't decode storage.fileMov#4b09ebbc to nil")
tl_storage_file_type_gen.go#L822: return fmt.Errorf("unable to decode storage.fileMov#4b09ebbc: %w", err)
tl_storage_file_type_gen.go#L830: return fmt.Errorf("can't decode storage.fileMov#4b09ebbc to nil")
tl_storage_file_type_gen.go#L904: return fmt.Errorf("can't encode storage.fileMp4#b3cea0e4 as nil")
tl_storage_file_type_gen.go#L913: return fmt.Errorf("can't encode storage.fileMp4#b3cea0e4 as nil")
tl_storage_file_type_gen.go#L921: return fmt.Errorf("can't decode storage.fileMp4#b3cea0e4 to nil")
tl_storage_file_type_gen.go#L924: return fmt.Errorf("unable to decode storage.fileMp4#b3cea0e4: %w", err)
tl_storage_file_type_gen.go#L932: return fmt.Errorf("can't decode storage.fileMp4#b3cea0e4 to nil")
tl_storage_file_type_gen.go#L1006: return fmt.Errorf("can't encode storage.fileWebp#1081464c as nil")
tl_storage_file_type_gen.go#L1015: return fmt.Errorf("can't encode storage.fileWebp#1081464c as nil")
tl_storage_file_type_gen.go#L1023: return fmt.Errorf("can't decode storage.fileWebp#1081464c to nil")
tl_storage_file_type_gen.go#L1026: return fmt.Errorf("unable to decode storage.fileWebp#1081464c: %w", err)
tl_storage_file_type_gen.go#L1034: return fmt.Errorf("can't decode storage.fileWebp#1081464c to nil")
tl_storage_file_type_gen.go#L1104: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1111: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1118: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1125: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1132: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1139: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1146: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1153: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1160: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1167: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
tl_storage_file_type_gen.go#L1171: return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", bin.NewUnexpectedID(id))
tl_storage_file_type_gen.go#L1183: return fmt.Errorf("unable to decode StorageFileTypeBox to nil")
tl_storage_file_type_gen.go#L1187: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_storage_file_type_gen.go#L1196: return fmt.Errorf("unable to encode StorageFileTypeClass as nil")
tl_theme_gen.go#L215: return fmt.Errorf("can't encode theme#28f1114 as nil")
tl_theme_gen.go#L224: return fmt.Errorf("can't encode theme#28f1114 as nil")
tl_theme_gen.go#L239: return fmt.Errorf("unable to encode theme#28f1114: field flags: %w", err)
tl_theme_gen.go#L247: return fmt.Errorf("unable to encode theme#28f1114: field document is nil")
tl_theme_gen.go#L250: return fmt.Errorf("unable to encode theme#28f1114: field document: %w", err)
tl_theme_gen.go#L255: return fmt.Errorf("unable to encode theme#28f1114: field settings: %w", err)
tl_theme_gen.go#L361: return fmt.Errorf("can't decode theme#28f1114 to nil")
tl_theme_gen.go#L364: return fmt.Errorf("unable to decode theme#28f1114: %w", err)
tl_theme_gen.go#L372: return fmt.Errorf("can't decode theme#28f1114 to nil")
tl_theme_gen.go#L376: return fmt.Errorf("unable to decode theme#28f1114: field flags: %w", err)
tl_theme_gen.go#L384: return fmt.Errorf("unable to decode theme#28f1114: field id: %w", err)
tl_theme_gen.go#L391: return fmt.Errorf("unable to decode theme#28f1114: field access_hash: %w", err)
tl_theme_gen.go#L398: return fmt.Errorf("unable to decode theme#28f1114: field slug: %w", err)
tl_theme_gen.go#L405: return fmt.Errorf("unable to decode theme#28f1114: field title: %w", err)
tl_theme_gen.go#L412: return fmt.Errorf("unable to decode theme#28f1114: field document: %w", err)
tl_theme_gen.go#L418: return fmt.Errorf("unable to decode theme#28f1114: field settings: %w", err)
tl_theme_gen.go#L424: return fmt.Errorf("unable to decode theme#28f1114: field installs_count: %w", err)
tl_theme_settings_gen.go#L175: return fmt.Errorf("can't encode themeSettings#9c14984a as nil")
tl_theme_settings_gen.go#L184: return fmt.Errorf("can't encode themeSettings#9c14984a as nil")
tl_theme_settings_gen.go#L196: return fmt.Errorf("unable to encode themeSettings#9c14984a: field flags: %w", err)
tl_theme_settings_gen.go#L199: return fmt.Errorf("unable to encode themeSettings#9c14984a: field base_theme is nil")
tl_theme_settings_gen.go#L202: return fmt.Errorf("unable to encode themeSettings#9c14984a: field base_theme: %w", err)
tl_theme_settings_gen.go#L213: return fmt.Errorf("unable to encode themeSettings#9c14984a: field wallpaper is nil")
tl_theme_settings_gen.go#L216: return fmt.Errorf("unable to encode themeSettings#9c14984a: field wallpaper: %w", err)
tl_theme_settings_gen.go#L280: return fmt.Errorf("can't decode themeSettings#9c14984a to nil")
tl_theme_settings_gen.go#L283: return fmt.Errorf("unable to decode themeSettings#9c14984a: %w", err)
tl_theme_settings_gen.go#L291: return fmt.Errorf("can't decode themeSettings#9c14984a to nil")
tl_theme_settings_gen.go#L295: return fmt.Errorf("unable to decode themeSettings#9c14984a: field flags: %w", err)
tl_theme_settings_gen.go#L301: return fmt.Errorf("unable to decode themeSettings#9c14984a: field base_theme: %w", err)
tl_theme_settings_gen.go#L308: return fmt.Errorf("unable to decode themeSettings#9c14984a: field accent_color: %w", err)
tl_theme_settings_gen.go#L315: return fmt.Errorf("unable to decode themeSettings#9c14984a: field message_top_color: %w", err)
tl_theme_settings_gen.go#L322: return fmt.Errorf("unable to decode themeSettings#9c14984a: field message_bottom_color: %w", err)
tl_theme_settings_gen.go#L329: return fmt.Errorf("unable to decode themeSettings#9c14984a: field wallpaper: %w", err)
tl_top_peer_category_gen.go#L88: return fmt.Errorf("can't encode topPeerCategoryBotsPM#ab661b5b as nil")
tl_top_peer_category_gen.go#L97: return fmt.Errorf("can't encode topPeerCategoryBotsPM#ab661b5b as nil")
tl_top_peer_category_gen.go#L105: return fmt.Errorf("can't decode topPeerCategoryBotsPM#ab661b5b to nil")
tl_top_peer_category_gen.go#L108: return fmt.Errorf("unable to decode topPeerCategoryBotsPM#ab661b5b: %w", err)
tl_top_peer_category_gen.go#L116: return fmt.Errorf("can't decode topPeerCategoryBotsPM#ab661b5b to nil")
tl_top_peer_category_gen.go#L190: return fmt.Errorf("can't encode topPeerCategoryBotsInline#148677e2 as nil")
tl_top_peer_category_gen.go#L199: return fmt.Errorf("can't encode topPeerCategoryBotsInline#148677e2 as nil")
tl_top_peer_category_gen.go#L207: return fmt.Errorf("can't decode topPeerCategoryBotsInline#148677e2 to nil")
tl_top_peer_category_gen.go#L210: return fmt.Errorf("unable to decode topPeerCategoryBotsInline#148677e2: %w", err)
tl_top_peer_category_gen.go#L218: return fmt.Errorf("can't decode topPeerCategoryBotsInline#148677e2 to nil")
tl_top_peer_category_gen.go#L292: return fmt.Errorf("can't encode topPeerCategoryCorrespondents#637b7ed as nil")
tl_top_peer_category_gen.go#L301: return fmt.Errorf("can't encode topPeerCategoryCorrespondents#637b7ed as nil")
tl_top_peer_category_gen.go#L309: return fmt.Errorf("can't decode topPeerCategoryCorrespondents#637b7ed to nil")
tl_top_peer_category_gen.go#L312: return fmt.Errorf("unable to decode topPeerCategoryCorrespondents#637b7ed: %w", err)
tl_top_peer_category_gen.go#L320: return fmt.Errorf("can't decode topPeerCategoryCorrespondents#637b7ed to nil")
tl_top_peer_category_gen.go#L394: return fmt.Errorf("can't encode topPeerCategoryGroups#bd17a14a as nil")
tl_top_peer_category_gen.go#L403: return fmt.Errorf("can't encode topPeerCategoryGroups#bd17a14a as nil")
tl_top_peer_category_gen.go#L411: return fmt.Errorf("can't decode topPeerCategoryGroups#bd17a14a to nil")
tl_top_peer_category_gen.go#L414: return fmt.Errorf("unable to decode topPeerCategoryGroups#bd17a14a: %w", err)
tl_top_peer_category_gen.go#L422: return fmt.Errorf("can't decode topPeerCategoryGroups#bd17a14a to nil")
tl_top_peer_category_gen.go#L496: return fmt.Errorf("can't encode topPeerCategoryChannels#161d9628 as nil")
tl_top_peer_category_gen.go#L505: return fmt.Errorf("can't encode topPeerCategoryChannels#161d9628 as nil")
tl_top_peer_category_gen.go#L513: return fmt.Errorf("can't decode topPeerCategoryChannels#161d9628 to nil")
tl_top_peer_category_gen.go#L516: return fmt.Errorf("unable to decode topPeerCategoryChannels#161d9628: %w", err)
tl_top_peer_category_gen.go#L524: return fmt.Errorf("can't decode topPeerCategoryChannels#161d9628 to nil")
tl_top_peer_category_gen.go#L598: return fmt.Errorf("can't encode topPeerCategoryPhoneCalls#1e76a78c as nil")
tl_top_peer_category_gen.go#L607: return fmt.Errorf("can't encode topPeerCategoryPhoneCalls#1e76a78c as nil")
tl_top_peer_category_gen.go#L615: return fmt.Errorf("can't decode topPeerCategoryPhoneCalls#1e76a78c to nil")
tl_top_peer_category_gen.go#L618: return fmt.Errorf("unable to decode topPeerCategoryPhoneCalls#1e76a78c: %w", err)
tl_top_peer_category_gen.go#L626: return fmt.Errorf("can't decode topPeerCategoryPhoneCalls#1e76a78c to nil")
tl_top_peer_category_gen.go#L700: return fmt.Errorf("can't encode topPeerCategoryForwardUsers#a8406ca9 as nil")
tl_top_peer_category_gen.go#L709: return fmt.Errorf("can't encode topPeerCategoryForwardUsers#a8406ca9 as nil")
tl_top_peer_category_gen.go#L717: return fmt.Errorf("can't decode topPeerCategoryForwardUsers#a8406ca9 to nil")
tl_top_peer_category_gen.go#L720: return fmt.Errorf("unable to decode topPeerCategoryForwardUsers#a8406ca9: %w", err)
tl_top_peer_category_gen.go#L728: return fmt.Errorf("can't decode topPeerCategoryForwardUsers#a8406ca9 to nil")
tl_top_peer_category_gen.go#L802: return fmt.Errorf("can't encode topPeerCategoryForwardChats#fbeec0f0 as nil")
tl_top_peer_category_gen.go#L811: return fmt.Errorf("can't encode topPeerCategoryForwardChats#fbeec0f0 as nil")
tl_top_peer_category_gen.go#L819: return fmt.Errorf("can't decode topPeerCategoryForwardChats#fbeec0f0 to nil")
tl_top_peer_category_gen.go#L822: return fmt.Errorf("unable to decode topPeerCategoryForwardChats#fbeec0f0: %w", err)
tl_top_peer_category_gen.go#L830: return fmt.Errorf("can't decode topPeerCategoryForwardChats#fbeec0f0 to nil")
tl_top_peer_category_gen.go#L898: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
tl_top_peer_category_gen.go#L905: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
tl_top_peer_category_gen.go#L912: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
tl_top_peer_category_gen.go#L919: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
tl_top_peer_category_gen.go#L926: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
tl_top_peer_category_gen.go#L933: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
tl_top_peer_category_gen.go#L940: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
tl_top_peer_category_gen.go#L947: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
tl_top_peer_category_gen.go#L951: return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", bin.NewUnexpectedID(id))
tl_top_peer_category_gen.go#L963: return fmt.Errorf("unable to decode TopPeerCategoryBox to nil")
tl_top_peer_category_gen.go#L967: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_top_peer_category_gen.go#L976: return fmt.Errorf("unable to encode TopPeerCategoryClass as nil")
tl_top_peer_category_peers_gen.go#L127: return fmt.Errorf("can't encode topPeerCategoryPeers#fb834291 as nil")
tl_top_peer_category_peers_gen.go#L136: return fmt.Errorf("can't encode topPeerCategoryPeers#fb834291 as nil")
tl_top_peer_category_peers_gen.go#L139: return fmt.Errorf("unable to encode topPeerCategoryPeers#fb834291: field category is nil")
tl_top_peer_category_peers_gen.go#L142: return fmt.Errorf("unable to encode topPeerCategoryPeers#fb834291: field category: %w", err)
tl_top_peer_category_peers_gen.go#L148: return fmt.Errorf("unable to encode topPeerCategoryPeers#fb834291: field peers element with index %d: %w", idx, err)
tl_top_peer_category_peers_gen.go#L172: return fmt.Errorf("can't decode topPeerCategoryPeers#fb834291 to nil")
tl_top_peer_category_peers_gen.go#L175: return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: %w", err)
tl_top_peer_category_peers_gen.go#L183: return fmt.Errorf("can't decode topPeerCategoryPeers#fb834291 to nil")
tl_top_peer_category_peers_gen.go#L188: return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: field category: %w", err)
tl_top_peer_category_peers_gen.go#L195: return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: field count: %w", err)
tl_top_peer_category_peers_gen.go#L202: return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: field peers: %w", err)
tl_top_peer_category_peers_gen.go#L207: return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: field peers: %w", err)
tl_top_peer_gen.go#L119: return fmt.Errorf("can't encode topPeer#edcdc05b as nil")
tl_top_peer_gen.go#L128: return fmt.Errorf("can't encode topPeer#edcdc05b as nil")
tl_top_peer_gen.go#L131: return fmt.Errorf("unable to encode topPeer#edcdc05b: field peer is nil")
tl_top_peer_gen.go#L134: return fmt.Errorf("unable to encode topPeer#edcdc05b: field peer: %w", err)
tl_top_peer_gen.go#L153: return fmt.Errorf("can't decode topPeer#edcdc05b to nil")
tl_top_peer_gen.go#L156: return fmt.Errorf("unable to decode topPeer#edcdc05b: %w", err)
tl_top_peer_gen.go#L164: return fmt.Errorf("can't decode topPeer#edcdc05b to nil")
tl_top_peer_gen.go#L169: return fmt.Errorf("unable to decode topPeer#edcdc05b: field peer: %w", err)
tl_top_peer_gen.go#L176: return fmt.Errorf("unable to decode topPeer#edcdc05b: field rating: %w", err)
tl_true_gen.go#L91: return fmt.Errorf("can't encode true#3fedd339 as nil")
tl_true_gen.go#L100: return fmt.Errorf("can't encode true#3fedd339 as nil")
tl_true_gen.go#L108: return fmt.Errorf("can't decode true#3fedd339 to nil")
tl_true_gen.go#L111: return fmt.Errorf("unable to decode true#3fedd339: %w", err)
tl_true_gen.go#L119: return fmt.Errorf("can't decode true#3fedd339 to nil")
tl_update_gen.go#L130: return fmt.Errorf("can't encode updateNewMessage#1f2b0afd as nil")
tl_update_gen.go#L139: return fmt.Errorf("can't encode updateNewMessage#1f2b0afd as nil")
tl_update_gen.go#L142: return fmt.Errorf("unable to encode updateNewMessage#1f2b0afd: field message is nil")
tl_update_gen.go#L145: return fmt.Errorf("unable to encode updateNewMessage#1f2b0afd: field message: %w", err)
tl_update_gen.go#L170: return fmt.Errorf("can't decode updateNewMessage#1f2b0afd to nil")
tl_update_gen.go#L173: return fmt.Errorf("unable to decode updateNewMessage#1f2b0afd: %w", err)
tl_update_gen.go#L181: return fmt.Errorf("can't decode updateNewMessage#1f2b0afd to nil")
tl_update_gen.go#L186: return fmt.Errorf("unable to decode updateNewMessage#1f2b0afd: field message: %w", err)
tl_update_gen.go#L193: return fmt.Errorf("unable to decode updateNewMessage#1f2b0afd: field pts: %w", err)
tl_update_gen.go#L200: return fmt.Errorf("unable to decode updateNewMessage#1f2b0afd: field pts_count: %w", err)
tl_update_gen.go#L307: return fmt.Errorf("can't encode updateMessageID#4e90bfd6 as nil")
tl_update_gen.go#L316: return fmt.Errorf("can't encode updateMessageID#4e90bfd6 as nil")
tl_update_gen.go#L336: return fmt.Errorf("can't decode updateMessageID#4e90bfd6 to nil")
tl_update_gen.go#L339: return fmt.Errorf("unable to decode updateMessageID#4e90bfd6: %w", err)
tl_update_gen.go#L347: return fmt.Errorf("can't decode updateMessageID#4e90bfd6 to nil")
tl_update_gen.go#L352: return fmt.Errorf("unable to decode updateMessageID#4e90bfd6: field id: %w", err)
tl_update_gen.go#L359: return fmt.Errorf("unable to decode updateMessageID#4e90bfd6: field random_id: %w", err)
tl_update_gen.go#L477: return fmt.Errorf("can't encode updateDeleteMessages#a20db0e5 as nil")
tl_update_gen.go#L486: return fmt.Errorf("can't encode updateDeleteMessages#a20db0e5 as nil")
tl_update_gen.go#L515: return fmt.Errorf("can't decode updateDeleteMessages#a20db0e5 to nil")
tl_update_gen.go#L518: return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: %w", err)
tl_update_gen.go#L526: return fmt.Errorf("can't decode updateDeleteMessages#a20db0e5 to nil")
tl_update_gen.go#L531: return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: field messages: %w", err)
tl_update_gen.go#L536: return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: field messages: %w", err)
tl_update_gen.go#L544: return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: field pts: %w", err)
tl_update_gen.go#L551: return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: field pts_count: %w", err)
tl_update_gen.go#L660: return fmt.Errorf("can't encode updateUserTyping#5c486927 as nil")
tl_update_gen.go#L669: return fmt.Errorf("can't encode updateUserTyping#5c486927 as nil")
tl_update_gen.go#L673: return fmt.Errorf("unable to encode updateUserTyping#5c486927: field action is nil")
tl_update_gen.go#L676: return fmt.Errorf("unable to encode updateUserTyping#5c486927: field action: %w", err)
tl_update_gen.go#L694: return fmt.Errorf("can't decode updateUserTyping#5c486927 to nil")
tl_update_gen.go#L697: return fmt.Errorf("unable to decode updateUserTyping#5c486927: %w", err)
tl_update_gen.go#L705: return fmt.Errorf("can't decode updateUserTyping#5c486927 to nil")
tl_update_gen.go#L710: return fmt.Errorf("unable to decode updateUserTyping#5c486927: field user_id: %w", err)
tl_update_gen.go#L717: return fmt.Errorf("unable to decode updateUserTyping#5c486927: field action: %w", err)
tl_update_gen.go#L837: return fmt.Errorf("can't encode updateChatUserTyping#86cadb6c as nil")
tl_update_gen.go#L846: return fmt.Errorf("can't encode updateChatUserTyping#86cadb6c as nil")
tl_update_gen.go#L850: return fmt.Errorf("unable to encode updateChatUserTyping#86cadb6c: field from_id is nil")
tl_update_gen.go#L853: return fmt.Errorf("unable to encode updateChatUserTyping#86cadb6c: field from_id: %w", err)
tl_update_gen.go#L856: return fmt.Errorf("unable to encode updateChatUserTyping#86cadb6c: field action is nil")
tl_update_gen.go#L859: return fmt.Errorf("unable to encode updateChatUserTyping#86cadb6c: field action: %w", err)
tl_update_gen.go#L882: return fmt.Errorf("can't decode updateChatUserTyping#86cadb6c to nil")
tl_update_gen.go#L885: return fmt.Errorf("unable to decode updateChatUserTyping#86cadb6c: %w", err)
tl_update_gen.go#L893: return fmt.Errorf("can't decode updateChatUserTyping#86cadb6c to nil")
tl_update_gen.go#L898: return fmt.Errorf("unable to decode updateChatUserTyping#86cadb6c: field chat_id: %w", err)
tl_update_gen.go#L905: return fmt.Errorf("unable to decode updateChatUserTyping#86cadb6c: field from_id: %w", err)
tl_update_gen.go#L912: return fmt.Errorf("unable to decode updateChatUserTyping#86cadb6c: field action: %w", err)
tl_update_gen.go#L1005: return fmt.Errorf("can't encode updateChatParticipants#7761198 as nil")
tl_update_gen.go#L1014: return fmt.Errorf("can't encode updateChatParticipants#7761198 as nil")
tl_update_gen.go#L1017: return fmt.Errorf("unable to encode updateChatParticipants#7761198: field participants is nil")
tl_update_gen.go#L1020: return fmt.Errorf("unable to encode updateChatParticipants#7761198: field participants: %w", err)
tl_update_gen.go#L1033: return fmt.Errorf("can't decode updateChatParticipants#7761198 to nil")
tl_update_gen.go#L1036: return fmt.Errorf("unable to decode updateChatParticipants#7761198: %w", err)
tl_update_gen.go#L1044: return fmt.Errorf("can't decode updateChatParticipants#7761198 to nil")
tl_update_gen.go#L1049: return fmt.Errorf("unable to decode updateChatParticipants#7761198: field participants: %w", err)
tl_update_gen.go#L1153: return fmt.Errorf("can't encode updateUserStatus#1bfbd823 as nil")
tl_update_gen.go#L1162: return fmt.Errorf("can't encode updateUserStatus#1bfbd823 as nil")
tl_update_gen.go#L1166: return fmt.Errorf("unable to encode updateUserStatus#1bfbd823: field status is nil")
tl_update_gen.go#L1169: return fmt.Errorf("unable to encode updateUserStatus#1bfbd823: field status: %w", err)
tl_update_gen.go#L1187: return fmt.Errorf("can't decode updateUserStatus#1bfbd823 to nil")
tl_update_gen.go#L1190: return fmt.Errorf("unable to decode updateUserStatus#1bfbd823: %w", err)
tl_update_gen.go#L1198: return fmt.Errorf("can't decode updateUserStatus#1bfbd823 to nil")
tl_update_gen.go#L1203: return fmt.Errorf("unable to decode updateUserStatus#1bfbd823: field user_id: %w", err)
tl_update_gen.go#L1210: return fmt.Errorf("unable to decode updateUserStatus#1bfbd823: field status: %w", err)
tl_update_gen.go#L1347: return fmt.Errorf("can't encode updateUserName#a7332b73 as nil")
tl_update_gen.go#L1356: return fmt.Errorf("can't encode updateUserName#a7332b73 as nil")
tl_update_gen.go#L1388: return fmt.Errorf("can't decode updateUserName#a7332b73 to nil")
tl_update_gen.go#L1391: return fmt.Errorf("unable to decode updateUserName#a7332b73: %w", err)
tl_update_gen.go#L1399: return fmt.Errorf("can't decode updateUserName#a7332b73 to nil")
tl_update_gen.go#L1404: return fmt.Errorf("unable to decode updateUserName#a7332b73: field user_id: %w", err)
tl_update_gen.go#L1411: return fmt.Errorf("unable to decode updateUserName#a7332b73: field first_name: %w", err)
tl_update_gen.go#L1418: return fmt.Errorf("unable to decode updateUserName#a7332b73: field last_name: %w", err)
tl_update_gen.go#L1425: return fmt.Errorf("unable to decode updateUserName#a7332b73: field username: %w", err)
tl_update_gen.go#L1554: return fmt.Errorf("can't encode updateUserPhoto#95313b0c as nil")
tl_update_gen.go#L1563: return fmt.Errorf("can't encode updateUserPhoto#95313b0c as nil")
tl_update_gen.go#L1568: return fmt.Errorf("unable to encode updateUserPhoto#95313b0c: field photo is nil")
tl_update_gen.go#L1571: return fmt.Errorf("unable to encode updateUserPhoto#95313b0c: field photo: %w", err)
tl_update_gen.go#L1600: return fmt.Errorf("can't decode updateUserPhoto#95313b0c to nil")
tl_update_gen.go#L1603: return fmt.Errorf("unable to decode updateUserPhoto#95313b0c: %w", err)
tl_update_gen.go#L1611: return fmt.Errorf("can't decode updateUserPhoto#95313b0c to nil")
tl_update_gen.go#L1616: return fmt.Errorf("unable to decode updateUserPhoto#95313b0c: field user_id: %w", err)
tl_update_gen.go#L1623: return fmt.Errorf("unable to decode updateUserPhoto#95313b0c: field date: %w", err)
tl_update_gen.go#L1630: return fmt.Errorf("unable to decode updateUserPhoto#95313b0c: field photo: %w", err)
tl_update_gen.go#L1637: return fmt.Errorf("unable to decode updateUserPhoto#95313b0c: field previous: %w", err)
tl_update_gen.go#L1741: return fmt.Errorf("can't encode updateNewEncryptedMessage#12bcbd9a as nil")
tl_update_gen.go#L1750: return fmt.Errorf("can't encode updateNewEncryptedMessage#12bcbd9a as nil")
tl_update_gen.go#L1753: return fmt.Errorf("unable to encode updateNewEncryptedMessage#12bcbd9a: field message is nil")
tl_update_gen.go#L1756: return fmt.Errorf("unable to encode updateNewEncryptedMessage#12bcbd9a: field message: %w", err)
tl_update_gen.go#L1775: return fmt.Errorf("can't decode updateNewEncryptedMessage#12bcbd9a to nil")
tl_update_gen.go#L1778: return fmt.Errorf("unable to decode updateNewEncryptedMessage#12bcbd9a: %w", err)
tl_update_gen.go#L1786: return fmt.Errorf("can't decode updateNewEncryptedMessage#12bcbd9a to nil")
tl_update_gen.go#L1791: return fmt.Errorf("unable to decode updateNewEncryptedMessage#12bcbd9a: field message: %w", err)
tl_update_gen.go#L1798: return fmt.Errorf("unable to decode updateNewEncryptedMessage#12bcbd9a: field qts: %w", err)
tl_update_gen.go#L1893: return fmt.Errorf("can't encode updateEncryptedChatTyping#1710f156 as nil")
tl_update_gen.go#L1902: return fmt.Errorf("can't encode updateEncryptedChatTyping#1710f156 as nil")
tl_update_gen.go#L1916: return fmt.Errorf("can't decode updateEncryptedChatTyping#1710f156 to nil")
tl_update_gen.go#L1919: return fmt.Errorf("unable to decode updateEncryptedChatTyping#1710f156: %w", err)
tl_update_gen.go#L1927: return fmt.Errorf("can't decode updateEncryptedChatTyping#1710f156 to nil")
tl_update_gen.go#L1932: return fmt.Errorf("unable to decode updateEncryptedChatTyping#1710f156: field chat_id: %w", err)
tl_update_gen.go#L2036: return fmt.Errorf("can't encode updateEncryption#b4a2e88d as nil")
tl_update_gen.go#L2045: return fmt.Errorf("can't encode updateEncryption#b4a2e88d as nil")
tl_update_gen.go#L2048: return fmt.Errorf("unable to encode updateEncryption#b4a2e88d: field chat is nil")
tl_update_gen.go#L2051: return fmt.Errorf("unable to encode updateEncryption#b4a2e88d: field chat: %w", err)
tl_update_gen.go#L2070: return fmt.Errorf("can't decode updateEncryption#b4a2e88d to nil")
tl_update_gen.go#L2073: return fmt.Errorf("unable to decode updateEncryption#b4a2e88d: %w", err)
tl_update_gen.go#L2081: return fmt.Errorf("can't decode updateEncryption#b4a2e88d to nil")
tl_update_gen.go#L2086: return fmt.Errorf("unable to decode updateEncryption#b4a2e88d: field chat: %w", err)
tl_update_gen.go#L2093: return fmt.Errorf("unable to decode updateEncryption#b4a2e88d: field date: %w", err)
tl_update_gen.go#L2208: return fmt.Errorf("can't encode updateEncryptedMessagesRead#38fe25b7 as nil")
tl_update_gen.go#L2217: return fmt.Errorf("can't encode updateEncryptedMessagesRead#38fe25b7 as nil")
tl_update_gen.go#L2243: return fmt.Errorf("can't decode updateEncryptedMessagesRead#38fe25b7 to nil")
tl_update_gen.go#L2246: return fmt.Errorf("unable to decode updateEncryptedMessagesRead#38fe25b7: %w", err)
tl_update_gen.go#L2254: return fmt.Errorf("can't decode updateEncryptedMessagesRead#38fe25b7 to nil")
tl_update_gen.go#L2259: return fmt.Errorf("unable to decode updateEncryptedMessagesRead#38fe25b7: field chat_id: %w", err)
tl_update_gen.go#L2266: return fmt.Errorf("unable to decode updateEncryptedMessagesRead#38fe25b7: field max_date: %w", err)
tl_update_gen.go#L2273: return fmt.Errorf("unable to decode updateEncryptedMessagesRead#38fe25b7: field date: %w", err)
tl_update_gen.go#L2410: return fmt.Errorf("can't encode updateChatParticipantAdd#ea4b0e5c as nil")
tl_update_gen.go#L2419: return fmt.Errorf("can't encode updateChatParticipantAdd#ea4b0e5c as nil")
tl_update_gen.go#L2457: return fmt.Errorf("can't decode updateChatParticipantAdd#ea4b0e5c to nil")
tl_update_gen.go#L2460: return fmt.Errorf("unable to decode updateChatParticipantAdd#ea4b0e5c: %w", err)
tl_update_gen.go#L2468: return fmt.Errorf("can't decode updateChatParticipantAdd#ea4b0e5c to nil")
tl_update_gen.go#L2473: return fmt.Errorf("unable to decode updateChatParticipantAdd#ea4b0e5c: field chat_id: %w", err)
tl_update_gen.go#L2480: return fmt.Errorf("unable to decode updateChatParticipantAdd#ea4b0e5c: field user_id: %w", err)
tl_update_gen.go#L2487: return fmt.Errorf("unable to decode updateChatParticipantAdd#ea4b0e5c: field inviter_id: %w", err)
tl_update_gen.go#L2494: return fmt.Errorf("unable to decode updateChatParticipantAdd#ea4b0e5c: field date: %w", err)
tl_update_gen.go#L2501: return fmt.Errorf("unable to decode updateChatParticipantAdd#ea4b0e5c: field version: %w", err)
tl_update_gen.go#L2616: return fmt.Errorf("can't encode updateChatParticipantDelete#6e5f8c22 as nil")
tl_update_gen.go#L2625: return fmt.Errorf("can't encode updateChatParticipantDelete#6e5f8c22 as nil")
tl_update_gen.go#L2651: return fmt.Errorf("can't decode updateChatParticipantDelete#6e5f8c22 to nil")
tl_update_gen.go#L2654: return fmt.Errorf("unable to decode updateChatParticipantDelete#6e5f8c22: %w", err)
tl_update_gen.go#L2662: return fmt.Errorf("can't decode updateChatParticipantDelete#6e5f8c22 to nil")
tl_update_gen.go#L2667: return fmt.Errorf("unable to decode updateChatParticipantDelete#6e5f8c22: field chat_id: %w", err)
tl_update_gen.go#L2674: return fmt.Errorf("unable to decode updateChatParticipantDelete#6e5f8c22: field user_id: %w", err)
tl_update_gen.go#L2681: return fmt.Errorf("unable to decode updateChatParticipantDelete#6e5f8c22: field version: %w", err)
tl_update_gen.go#L2774: return fmt.Errorf("can't encode updateDcOptions#8e5e9873 as nil")
tl_update_gen.go#L2783: return fmt.Errorf("can't encode updateDcOptions#8e5e9873 as nil")
tl_update_gen.go#L2788: return fmt.Errorf("unable to encode updateDcOptions#8e5e9873: field dc_options element with index %d: %w", idx, err)
tl_update_gen.go#L2802: return fmt.Errorf("can't decode updateDcOptions#8e5e9873 to nil")
tl_update_gen.go#L2805: return fmt.Errorf("unable to decode updateDcOptions#8e5e9873: %w", err)
tl_update_gen.go#L2813: return fmt.Errorf("can't decode updateDcOptions#8e5e9873 to nil")
tl_update_gen.go#L2818: return fmt.Errorf("unable to decode updateDcOptions#8e5e9873: field dc_options: %w", err)
tl_update_gen.go#L2823: return fmt.Errorf("unable to decode updateDcOptions#8e5e9873: field dc_options: %w", err)
tl_update_gen.go#L2928: return fmt.Errorf("can't encode updateNotifySettings#bec268ef as nil")
tl_update_gen.go#L2937: return fmt.Errorf("can't encode updateNotifySettings#bec268ef as nil")
tl_update_gen.go#L2940: return fmt.Errorf("unable to encode updateNotifySettings#bec268ef: field peer is nil")
tl_update_gen.go#L2943: return fmt.Errorf("unable to encode updateNotifySettings#bec268ef: field peer: %w", err)
tl_update_gen.go#L2946: return fmt.Errorf("unable to encode updateNotifySettings#bec268ef: field notify_settings: %w", err)
tl_update_gen.go#L2964: return fmt.Errorf("can't decode updateNotifySettings#bec268ef to nil")
tl_update_gen.go#L2967: return fmt.Errorf("unable to decode updateNotifySettings#bec268ef: %w", err)
tl_update_gen.go#L2975: return fmt.Errorf("can't decode updateNotifySettings#bec268ef to nil")
tl_update_gen.go#L2980: return fmt.Errorf("unable to decode updateNotifySettings#bec268ef: field peer: %w", err)
tl_update_gen.go#L2986: return fmt.Errorf("unable to decode updateNotifySettings#bec268ef: field notify_settings: %w", err)
tl_update_gen.go#L3163: return fmt.Errorf("can't encode updateServiceNotification#ebe46819 as nil")
tl_update_gen.go#L3172: return fmt.Errorf("can't encode updateServiceNotification#ebe46819 as nil")
tl_update_gen.go#L3181: return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field flags: %w", err)
tl_update_gen.go#L3189: return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field media is nil")
tl_update_gen.go#L3192: return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field media: %w", err)
tl_update_gen.go#L3197: return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field entities element with index %d is nil", idx)
tl_update_gen.go#L3200: return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field entities element with index %d: %w", idx, err)
tl_update_gen.go#L3265: return fmt.Errorf("can't decode updateServiceNotification#ebe46819 to nil")
tl_update_gen.go#L3268: return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: %w", err)
tl_update_gen.go#L3276: return fmt.Errorf("can't decode updateServiceNotification#ebe46819 to nil")
tl_update_gen.go#L3280: return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field flags: %w", err)
tl_update_gen.go#L3287: return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field inbox_date: %w", err)
tl_update_gen.go#L3294: return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field type: %w", err)
tl_update_gen.go#L3301: return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field message: %w", err)
tl_update_gen.go#L3308: return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field media: %w", err)
tl_update_gen.go#L3315: return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field entities: %w", err)
tl_update_gen.go#L3320: return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field entities: %w", err)
tl_update_gen.go#L3425: return fmt.Errorf("can't encode updatePrivacy#ee3b272a as nil")
tl_update_gen.go#L3434: return fmt.Errorf("can't encode updatePrivacy#ee3b272a as nil")
tl_update_gen.go#L3437: return fmt.Errorf("unable to encode updatePrivacy#ee3b272a: field key is nil")
tl_update_gen.go#L3440: return fmt.Errorf("unable to encode updatePrivacy#ee3b272a: field key: %w", err)
tl_update_gen.go#L3445: return fmt.Errorf("unable to encode updatePrivacy#ee3b272a: field rules element with index %d is nil", idx)
tl_update_gen.go#L3448: return fmt.Errorf("unable to encode updatePrivacy#ee3b272a: field rules element with index %d: %w", idx, err)
tl_update_gen.go#L3472: return fmt.Errorf("can't decode updatePrivacy#ee3b272a to nil")
tl_update_gen.go#L3475: return fmt.Errorf("unable to decode updatePrivacy#ee3b272a: %w", err)
tl_update_gen.go#L3483: return fmt.Errorf("can't decode updatePrivacy#ee3b272a to nil")
tl_update_gen.go#L3488: return fmt.Errorf("unable to decode updatePrivacy#ee3b272a: field key: %w", err)
tl_update_gen.go#L3495: return fmt.Errorf("unable to decode updatePrivacy#ee3b272a: field rules: %w", err)
tl_update_gen.go#L3500: return fmt.Errorf("unable to decode updatePrivacy#ee3b272a: field rules: %w", err)
tl_update_gen.go#L3605: return fmt.Errorf("can't encode updateUserPhone#12b9417b as nil")
tl_update_gen.go#L3614: return fmt.Errorf("can't encode updateUserPhone#12b9417b as nil")
tl_update_gen.go#L3634: return fmt.Errorf("can't decode updateUserPhone#12b9417b to nil")
tl_update_gen.go#L3637: return fmt.Errorf("unable to decode updateUserPhone#12b9417b: %w", err)
tl_update_gen.go#L3645: return fmt.Errorf("can't decode updateUserPhone#12b9417b to nil")
tl_update_gen.go#L3650: return fmt.Errorf("unable to decode updateUserPhone#12b9417b: field user_id: %w", err)
tl_update_gen.go#L3657: return fmt.Errorf("unable to decode updateUserPhone#12b9417b: field phone: %w", err)
tl_update_gen.go#L3828: return fmt.Errorf("can't encode updateReadHistoryInbox#9c974fdf as nil")
tl_update_gen.go#L3837: return fmt.Errorf("can't encode updateReadHistoryInbox#9c974fdf as nil")
tl_update_gen.go#L3843: return fmt.Errorf("unable to encode updateReadHistoryInbox#9c974fdf: field flags: %w", err)
tl_update_gen.go#L3849: return fmt.Errorf("unable to encode updateReadHistoryInbox#9c974fdf: field peer is nil")
tl_update_gen.go#L3852: return fmt.Errorf("unable to encode updateReadHistoryInbox#9c974fdf: field peer: %w", err)
tl_update_gen.go#L3904: return fmt.Errorf("can't decode updateReadHistoryInbox#9c974fdf to nil")
tl_update_gen.go#L3907: return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: %w", err)
tl_update_gen.go#L3915: return fmt.Errorf("can't decode updateReadHistoryInbox#9c974fdf to nil")
tl_update_gen.go#L3919: return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field flags: %w", err)
tl_update_gen.go#L3925: return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field folder_id: %w", err)
tl_update_gen.go#L3932: return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field peer: %w", err)
tl_update_gen.go#L3939: return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field max_id: %w", err)
tl_update_gen.go#L3946: return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field still_unread_count: %w", err)
tl_update_gen.go#L3953: return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field pts: %w", err)
tl_update_gen.go#L3960: return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field pts_count: %w", err)
tl_update_gen.go#L4092: return fmt.Errorf("can't encode updateReadHistoryOutbox#2f2f21bf as nil")
tl_update_gen.go#L4101: return fmt.Errorf("can't encode updateReadHistoryOutbox#2f2f21bf as nil")
tl_update_gen.go#L4104: return fmt.Errorf("unable to encode updateReadHistoryOutbox#2f2f21bf: field peer is nil")
tl_update_gen.go#L4107: return fmt.Errorf("unable to encode updateReadHistoryOutbox#2f2f21bf: field peer: %w", err)
tl_update_gen.go#L4138: return fmt.Errorf("can't decode updateReadHistoryOutbox#2f2f21bf to nil")
tl_update_gen.go#L4141: return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: %w", err)
tl_update_gen.go#L4149: return fmt.Errorf("can't decode updateReadHistoryOutbox#2f2f21bf to nil")
tl_update_gen.go#L4154: return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: field peer: %w", err)
tl_update_gen.go#L4161: return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: field max_id: %w", err)
tl_update_gen.go#L4168: return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: field pts: %w", err)
tl_update_gen.go#L4175: return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: field pts_count: %w", err)
tl_update_gen.go#L4299: return fmt.Errorf("can't encode updateWebPage#7f891213 as nil")
tl_update_gen.go#L4308: return fmt.Errorf("can't encode updateWebPage#7f891213 as nil")
tl_update_gen.go#L4311: return fmt.Errorf("unable to encode updateWebPage#7f891213: field webpage is nil")
tl_update_gen.go#L4314: return fmt.Errorf("unable to encode updateWebPage#7f891213: field webpage: %w", err)
tl_update_gen.go#L4339: return fmt.Errorf("can't decode updateWebPage#7f891213 to nil")
tl_update_gen.go#L4342: return fmt.Errorf("unable to decode updateWebPage#7f891213: %w", err)
tl_update_gen.go#L4350: return fmt.Errorf("can't decode updateWebPage#7f891213 to nil")
tl_update_gen.go#L4355: return fmt.Errorf("unable to decode updateWebPage#7f891213: field webpage: %w", err)
tl_update_gen.go#L4362: return fmt.Errorf("unable to decode updateWebPage#7f891213: field pts: %w", err)
tl_update_gen.go#L4369: return fmt.Errorf("unable to decode updateWebPage#7f891213: field pts_count: %w", err)
tl_update_gen.go#L4493: return fmt.Errorf("can't encode updateReadMessagesContents#68c13933 as nil")
tl_update_gen.go#L4502: return fmt.Errorf("can't encode updateReadMessagesContents#68c13933 as nil")
tl_update_gen.go#L4531: return fmt.Errorf("can't decode updateReadMessagesContents#68c13933 to nil")
tl_update_gen.go#L4534: return fmt.Errorf("unable to decode updateReadMessagesContents#68c13933: %w", err)
tl_update_gen.go#L4542: return fmt.Errorf("can't decode updateReadMessagesContents#68c13933 to nil")
tl_update_gen.go#L4547: return fmt.Errorf("unable to decode updateReadMessagesContents#68c13933: field messages: %w", err)
tl_update_gen.go#L4552: return fmt.Errorf("unable to decode updateReadMessagesContents#68c13933: field messages: %w", err)
tl_update_gen.go#L4560: return fmt.Errorf("unable to decode updateReadMessagesContents#68c13933: field pts: %w", err)
tl_update_gen.go#L4567: return fmt.Errorf("unable to decode updateReadMessagesContents#68c13933: field pts_count: %w", err)
tl_update_gen.go#L4690: return fmt.Errorf("can't encode updateChannelTooLong#eb0467fb as nil")
tl_update_gen.go#L4699: return fmt.Errorf("can't encode updateChannelTooLong#eb0467fb as nil")
tl_update_gen.go#L4705: return fmt.Errorf("unable to encode updateChannelTooLong#eb0467fb: field flags: %w", err)
tl_update_gen.go#L4737: return fmt.Errorf("can't decode updateChannelTooLong#eb0467fb to nil")
tl_update_gen.go#L4740: return fmt.Errorf("unable to decode updateChannelTooLong#eb0467fb: %w", err)
tl_update_gen.go#L4748: return fmt.Errorf("can't decode updateChannelTooLong#eb0467fb to nil")
tl_update_gen.go#L4752: return fmt.Errorf("unable to decode updateChannelTooLong#eb0467fb: field flags: %w", err)
tl_update_gen.go#L4758: return fmt.Errorf("unable to decode updateChannelTooLong#eb0467fb: field channel_id: %w", err)
tl_update_gen.go#L4765: return fmt.Errorf("unable to decode updateChannelTooLong#eb0467fb: field pts: %w", err)
tl_update_gen.go#L4858: return fmt.Errorf("can't encode updateChannel#b6d45656 as nil")
tl_update_gen.go#L4867: return fmt.Errorf("can't encode updateChannel#b6d45656 as nil")
tl_update_gen.go#L4881: return fmt.Errorf("can't decode updateChannel#b6d45656 to nil")
tl_update_gen.go#L4884: return fmt.Errorf("unable to decode updateChannel#b6d45656: %w", err)
tl_update_gen.go#L4892: return fmt.Errorf("can't decode updateChannel#b6d45656 to nil")
tl_update_gen.go#L4897: return fmt.Errorf("unable to decode updateChannel#b6d45656: field channel_id: %w", err)
tl_update_gen.go#L5021: return fmt.Errorf("can't encode updateNewChannelMessage#62ba04d9 as nil")
tl_update_gen.go#L5030: return fmt.Errorf("can't encode updateNewChannelMessage#62ba04d9 as nil")
tl_update_gen.go#L5033: return fmt.Errorf("unable to encode updateNewChannelMessage#62ba04d9: field message is nil")
tl_update_gen.go#L5036: return fmt.Errorf("unable to encode updateNewChannelMessage#62ba04d9: field message: %w", err)
tl_update_gen.go#L5061: return fmt.Errorf("can't decode updateNewChannelMessage#62ba04d9 to nil")
tl_update_gen.go#L5064: return fmt.Errorf("unable to decode updateNewChannelMessage#62ba04d9: %w", err)
tl_update_gen.go#L5072: return fmt.Errorf("can't decode updateNewChannelMessage#62ba04d9 to nil")
tl_update_gen.go#L5077: return fmt.Errorf("unable to decode updateNewChannelMessage#62ba04d9: field message: %w", err)
tl_update_gen.go#L5084: return fmt.Errorf("unable to decode updateNewChannelMessage#62ba04d9: field pts: %w", err)
tl_update_gen.go#L5091: return fmt.Errorf("unable to decode updateNewChannelMessage#62ba04d9: field pts_count: %w", err)
tl_update_gen.go#L5251: return fmt.Errorf("can't encode updateReadChannelInbox#330b5424 as nil")
tl_update_gen.go#L5260: return fmt.Errorf("can't encode updateReadChannelInbox#330b5424 as nil")
tl_update_gen.go#L5266: return fmt.Errorf("unable to encode updateReadChannelInbox#330b5424: field flags: %w", err)
tl_update_gen.go#L5316: return fmt.Errorf("can't decode updateReadChannelInbox#330b5424 to nil")
tl_update_gen.go#L5319: return fmt.Errorf("unable to decode updateReadChannelInbox#330b5424: %w", err)
tl_update_gen.go#L5327: return fmt.Errorf("can't decode updateReadChannelInbox#330b5424 to nil")
tl_update_gen.go#L5331: return fmt.Errorf("unable to decode updateReadChannelInbox#330b5424: field flags: %w", err)
tl_update_gen.go#L5337: return fmt.Errorf("unable to decode updateReadChannelInbox#330b5424: field folder_id: %w", err)
tl_update_gen.go#L5344: return fmt.Errorf("unable to decode updateReadChannelInbox#330b5424: field channel_id: %w", err)
tl_update_gen.go#L5351: return fmt.Errorf("unable to decode updateReadChannelInbox#330b5424: field max_id: %w", err)
tl_update_gen.go#L5358: return fmt.Errorf("unable to decode updateReadChannelInbox#330b5424: field still_unread_count: %w", err)
tl_update_gen.go#L5365: return fmt.Errorf("unable to decode updateReadChannelInbox#330b5424: field pts: %w", err)
tl_update_gen.go#L5500: return fmt.Errorf("can't encode updateDeleteChannelMessages#c37521c9 as nil")
tl_update_gen.go#L5509: return fmt.Errorf("can't encode updateDeleteChannelMessages#c37521c9 as nil")
tl_update_gen.go#L5544: return fmt.Errorf("can't decode updateDeleteChannelMessages#c37521c9 to nil")
tl_update_gen.go#L5547: return fmt.Errorf("unable to decode updateDeleteChannelMessages#c37521c9: %w", err)
tl_update_gen.go#L5555: return fmt.Errorf("can't decode updateDeleteChannelMessages#c37521c9 to nil")
tl_update_gen.go#L5560: return fmt.Errorf("unable to decode updateDeleteChannelMessages#c37521c9: field channel_id: %w", err)
tl_update_gen.go#L5567: return fmt.Errorf("unable to decode updateDeleteChannelMessages#c37521c9: field messages: %w", err)
tl_update_gen.go#L5572: return fmt.Errorf("unable to decode updateDeleteChannelMessages#c37521c9: field messages: %w", err)
tl_update_gen.go#L5580: return fmt.Errorf("unable to decode updateDeleteChannelMessages#c37521c9: field pts: %w", err)
tl_update_gen.go#L5587: return fmt.Errorf("unable to decode updateDeleteChannelMessages#c37521c9: field pts_count: %w", err)
tl_update_gen.go#L5702: return fmt.Errorf("can't encode updateChannelMessageViews#98a12b4b as nil")
tl_update_gen.go#L5711: return fmt.Errorf("can't encode updateChannelMessageViews#98a12b4b as nil")
tl_update_gen.go#L5737: return fmt.Errorf("can't decode updateChannelMessageViews#98a12b4b to nil")
tl_update_gen.go#L5740: return fmt.Errorf("unable to decode updateChannelMessageViews#98a12b4b: %w", err)
tl_update_gen.go#L5748: return fmt.Errorf("can't decode updateChannelMessageViews#98a12b4b to nil")
tl_update_gen.go#L5753: return fmt.Errorf("unable to decode updateChannelMessageViews#98a12b4b: field channel_id: %w", err)
tl_update_gen.go#L5760: return fmt.Errorf("unable to decode updateChannelMessageViews#98a12b4b: field id: %w", err)
tl_update_gen.go#L5767: return fmt.Errorf("unable to decode updateChannelMessageViews#98a12b4b: field views: %w", err)
tl_update_gen.go#L5896: return fmt.Errorf("can't encode updateChatParticipantAdmin#b6901959 as nil")
tl_update_gen.go#L5905: return fmt.Errorf("can't encode updateChatParticipantAdmin#b6901959 as nil")
tl_update_gen.go#L5937: return fmt.Errorf("can't decode updateChatParticipantAdmin#b6901959 to nil")
tl_update_gen.go#L5940: return fmt.Errorf("unable to decode updateChatParticipantAdmin#b6901959: %w", err)
tl_update_gen.go#L5948: return fmt.Errorf("can't decode updateChatParticipantAdmin#b6901959 to nil")
tl_update_gen.go#L5953: return fmt.Errorf("unable to decode updateChatParticipantAdmin#b6901959: field chat_id: %w", err)
tl_update_gen.go#L5960: return fmt.Errorf("unable to decode updateChatParticipantAdmin#b6901959: field user_id: %w", err)
tl_update_gen.go#L5967: return fmt.Errorf("unable to decode updateChatParticipantAdmin#b6901959: field is_admin: %w", err)
tl_update_gen.go#L5974: return fmt.Errorf("unable to decode updateChatParticipantAdmin#b6901959: field version: %w", err)
tl_update_gen.go#L6067: return fmt.Errorf("can't encode updateNewStickerSet#688a30aa as nil")
tl_update_gen.go#L6076: return fmt.Errorf("can't encode updateNewStickerSet#688a30aa as nil")
tl_update_gen.go#L6079: return fmt.Errorf("unable to encode updateNewStickerSet#688a30aa: field stickerset: %w", err)
tl_update_gen.go#L6092: return fmt.Errorf("can't decode updateNewStickerSet#688a30aa to nil")
tl_update_gen.go#L6095: return fmt.Errorf("unable to decode updateNewStickerSet#688a30aa: %w", err)
tl_update_gen.go#L6103: return fmt.Errorf("can't decode updateNewStickerSet#688a30aa to nil")
tl_update_gen.go#L6107: return fmt.Errorf("unable to decode updateNewStickerSet#688a30aa: field stickerset: %w", err)
tl_update_gen.go#L6219: return fmt.Errorf("can't encode updateStickerSetsOrder#bb2d201 as nil")
tl_update_gen.go#L6228: return fmt.Errorf("can't encode updateStickerSetsOrder#bb2d201 as nil")
tl_update_gen.go#L6234: return fmt.Errorf("unable to encode updateStickerSetsOrder#bb2d201: field flags: %w", err)
tl_update_gen.go#L6267: return fmt.Errorf("can't decode updateStickerSetsOrder#bb2d201 to nil")
tl_update_gen.go#L6270: return fmt.Errorf("unable to decode updateStickerSetsOrder#bb2d201: %w", err)
tl_update_gen.go#L6278: return fmt.Errorf("can't decode updateStickerSetsOrder#bb2d201 to nil")
tl_update_gen.go#L6282: return fmt.Errorf("unable to decode updateStickerSetsOrder#bb2d201: field flags: %w", err)
tl_update_gen.go#L6289: return fmt.Errorf("unable to decode updateStickerSetsOrder#bb2d201: field order: %w", err)
tl_update_gen.go#L6294: return fmt.Errorf("unable to decode updateStickerSetsOrder#bb2d201: field order: %w", err)
tl_update_gen.go#L6375: return fmt.Errorf("can't encode updateStickerSets#43ae3dec as nil")
tl_update_gen.go#L6384: return fmt.Errorf("can't encode updateStickerSets#43ae3dec as nil")
tl_update_gen.go#L6392: return fmt.Errorf("can't decode updateStickerSets#43ae3dec to nil")
tl_update_gen.go#L6395: return fmt.Errorf("unable to decode updateStickerSets#43ae3dec: %w", err)
tl_update_gen.go#L6403: return fmt.Errorf("can't decode updateStickerSets#43ae3dec to nil")
tl_update_gen.go#L6481: return fmt.Errorf("can't encode updateSavedGifs#9375341e as nil")
tl_update_gen.go#L6490: return fmt.Errorf("can't encode updateSavedGifs#9375341e as nil")
tl_update_gen.go#L6498: return fmt.Errorf("can't decode updateSavedGifs#9375341e to nil")
tl_update_gen.go#L6501: return fmt.Errorf("unable to decode updateSavedGifs#9375341e: %w", err)
tl_update_gen.go#L6509: return fmt.Errorf("can't decode updateSavedGifs#9375341e to nil")
tl_update_gen.go#L6675: return fmt.Errorf("can't encode updateBotInlineQuery#3f2038db as nil")
tl_update_gen.go#L6684: return fmt.Errorf("can't encode updateBotInlineQuery#3f2038db as nil")
tl_update_gen.go#L6693: return fmt.Errorf("unable to encode updateBotInlineQuery#3f2038db: field flags: %w", err)
tl_update_gen.go#L6700: return fmt.Errorf("unable to encode updateBotInlineQuery#3f2038db: field geo is nil")
tl_update_gen.go#L6703: return fmt.Errorf("unable to encode updateBotInlineQuery#3f2038db: field geo: %w", err)
tl_update_gen.go#L6708: return fmt.Errorf("unable to encode updateBotInlineQuery#3f2038db: field peer_type is nil")
tl_update_gen.go#L6711: return fmt.Errorf("unable to encode updateBotInlineQuery#3f2038db: field peer_type: %w", err)
tl_update_gen.go#L6771: return fmt.Errorf("can't decode updateBotInlineQuery#3f2038db to nil")
tl_update_gen.go#L6774: return fmt.Errorf("unable to decode updateBotInlineQuery#3f2038db: %w", err)
tl_update_gen.go#L6782: return fmt.Errorf("can't decode updateBotInlineQuery#3f2038db to nil")
tl_update_gen.go#L6786: return fmt.Errorf("unable to decode updateBotInlineQuery#3f2038db: field flags: %w", err)
tl_update_gen.go#L6792: return fmt.Errorf("unable to decode updateBotInlineQuery#3f2038db: field query_id: %w", err)
tl_update_gen.go#L6799: return fmt.Errorf("unable to decode updateBotInlineQuery#3f2038db: field user_id: %w", err)
tl_update_gen.go#L6806: return fmt.Errorf("unable to decode updateBotInlineQuery#3f2038db: field query: %w", err)
tl_update_gen.go#L6813: return fmt.Errorf("unable to decode updateBotInlineQuery#3f2038db: field geo: %w", err)
tl_update_gen.go#L6820: return fmt.Errorf("unable to decode updateBotInlineQuery#3f2038db: field peer_type: %w", err)
tl_update_gen.go#L6827: return fmt.Errorf("unable to decode updateBotInlineQuery#3f2038db: field offset: %w", err)
tl_update_gen.go#L6991: return fmt.Errorf("can't encode updateBotInlineSend#e48f964 as nil")
tl_update_gen.go#L7000: return fmt.Errorf("can't encode updateBotInlineSend#e48f964 as nil")
tl_update_gen.go#L7009: return fmt.Errorf("unable to encode updateBotInlineSend#e48f964: field flags: %w", err)
tl_update_gen.go#L7015: return fmt.Errorf("unable to encode updateBotInlineSend#e48f964: field geo is nil")
tl_update_gen.go#L7018: return fmt.Errorf("unable to encode updateBotInlineSend#e48f964: field geo: %w", err)
tl_update_gen.go#L7024: return fmt.Errorf("unable to encode updateBotInlineSend#e48f964: field msg_id: %w", err)
tl_update_gen.go#L7078: return fmt.Errorf("can't decode updateBotInlineSend#e48f964 to nil")
tl_update_gen.go#L7081: return fmt.Errorf("unable to decode updateBotInlineSend#e48f964: %w", err)
tl_update_gen.go#L7089: return fmt.Errorf("can't decode updateBotInlineSend#e48f964 to nil")
tl_update_gen.go#L7093: return fmt.Errorf("unable to decode updateBotInlineSend#e48f964: field flags: %w", err)
tl_update_gen.go#L7099: return fmt.Errorf("unable to decode updateBotInlineSend#e48f964: field user_id: %w", err)
tl_update_gen.go#L7106: return fmt.Errorf("unable to decode updateBotInlineSend#e48f964: field query: %w", err)
tl_update_gen.go#L7113: return fmt.Errorf("unable to decode updateBotInlineSend#e48f964: field geo: %w", err)
tl_update_gen.go#L7120: return fmt.Errorf("unable to decode updateBotInlineSend#e48f964: field id: %w", err)
tl_update_gen.go#L7126: return fmt.Errorf("unable to decode updateBotInlineSend#e48f964: field msg_id: %w", err)
tl_update_gen.go#L7249: return fmt.Errorf("can't encode updateEditChannelMessage#1b3f4df7 as nil")
tl_update_gen.go#L7258: return fmt.Errorf("can't encode updateEditChannelMessage#1b3f4df7 as nil")
tl_update_gen.go#L7261: return fmt.Errorf("unable to encode updateEditChannelMessage#1b3f4df7: field message is nil")
tl_update_gen.go#L7264: return fmt.Errorf("unable to encode updateEditChannelMessage#1b3f4df7: field message: %w", err)
tl_update_gen.go#L7289: return fmt.Errorf("can't decode updateEditChannelMessage#1b3f4df7 to nil")
tl_update_gen.go#L7292: return fmt.Errorf("unable to decode updateEditChannelMessage#1b3f4df7: %w", err)
tl_update_gen.go#L7300: return fmt.Errorf("can't decode updateEditChannelMessage#1b3f4df7 to nil")
tl_update_gen.go#L7305: return fmt.Errorf("unable to decode updateEditChannelMessage#1b3f4df7: field message: %w", err)
tl_update_gen.go#L7312: return fmt.Errorf("unable to decode updateEditChannelMessage#1b3f4df7: field pts: %w", err)
tl_update_gen.go#L7319: return fmt.Errorf("unable to decode updateEditChannelMessage#1b3f4df7: field pts_count: %w", err)
tl_update_gen.go#L7500: return fmt.Errorf("can't encode updateBotCallbackQuery#e73547e1 as nil")
tl_update_gen.go#L7509: return fmt.Errorf("can't encode updateBotCallbackQuery#e73547e1 as nil")
tl_update_gen.go#L7518: return fmt.Errorf("unable to encode updateBotCallbackQuery#e73547e1: field flags: %w", err)
tl_update_gen.go#L7523: return fmt.Errorf("unable to encode updateBotCallbackQuery#e73547e1: field peer is nil")
tl_update_gen.go#L7526: return fmt.Errorf("unable to encode updateBotCallbackQuery#e73547e1: field peer: %w", err)
tl_update_gen.go#L7597: return fmt.Errorf("can't decode updateBotCallbackQuery#e73547e1 to nil")
tl_update_gen.go#L7600: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: %w", err)
tl_update_gen.go#L7608: return fmt.Errorf("can't decode updateBotCallbackQuery#e73547e1 to nil")
tl_update_gen.go#L7612: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: field flags: %w", err)
tl_update_gen.go#L7618: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: field query_id: %w", err)
tl_update_gen.go#L7625: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: field user_id: %w", err)
tl_update_gen.go#L7632: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: field peer: %w", err)
tl_update_gen.go#L7639: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: field msg_id: %w", err)
tl_update_gen.go#L7646: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: field chat_instance: %w", err)
tl_update_gen.go#L7653: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: field data: %w", err)
tl_update_gen.go#L7660: return fmt.Errorf("unable to decode updateBotCallbackQuery#e73547e1: field game_short_name: %w", err)
tl_update_gen.go#L7781: return fmt.Errorf("can't encode updateEditMessage#e40370a3 as nil")
tl_update_gen.go#L7790: return fmt.Errorf("can't encode updateEditMessage#e40370a3 as nil")
tl_update_gen.go#L7793: return fmt.Errorf("unable to encode updateEditMessage#e40370a3: field message is nil")
tl_update_gen.go#L7796: return fmt.Errorf("unable to encode updateEditMessage#e40370a3: field message: %w", err)
tl_update_gen.go#L7821: return fmt.Errorf("can't decode updateEditMessage#e40370a3 to nil")
tl_update_gen.go#L7824: return fmt.Errorf("unable to decode updateEditMessage#e40370a3: %w", err)
tl_update_gen.go#L7832: return fmt.Errorf("can't decode updateEditMessage#e40370a3 to nil")
tl_update_gen.go#L7837: return fmt.Errorf("unable to decode updateEditMessage#e40370a3: field message: %w", err)
tl_update_gen.go#L7844: return fmt.Errorf("unable to decode updateEditMessage#e40370a3: field pts: %w", err)
tl_update_gen.go#L7851: return fmt.Errorf("unable to decode updateEditMessage#e40370a3: field pts_count: %w", err)
tl_update_gen.go#L8021: return fmt.Errorf("can't encode updateInlineBotCallbackQuery#f9d27a5a as nil")
tl_update_gen.go#L8030: return fmt.Errorf("can't encode updateInlineBotCallbackQuery#f9d27a5a as nil")
tl_update_gen.go#L8039: return fmt.Errorf("unable to encode updateInlineBotCallbackQuery#f9d27a5a: field flags: %w", err)
tl_update_gen.go#L8044: return fmt.Errorf("unable to encode updateInlineBotCallbackQuery#f9d27a5a: field msg_id: %w", err)
tl_update_gen.go#L8109: return fmt.Errorf("can't decode updateInlineBotCallbackQuery#f9d27a5a to nil")
tl_update_gen.go#L8112: return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#f9d27a5a: %w", err)
tl_update_gen.go#L8120: return fmt.Errorf("can't decode updateInlineBotCallbackQuery#f9d27a5a to nil")
tl_update_gen.go#L8124: return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#f9d27a5a: field flags: %w", err)
tl_update_gen.go#L8130: return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#f9d27a5a: field query_id: %w", err)
tl_update_gen.go#L8137: return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#f9d27a5a: field user_id: %w", err)
tl_update_gen.go#L8143: return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#f9d27a5a: field msg_id: %w", err)
tl_update_gen.go#L8149: return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#f9d27a5a: field chat_instance: %w", err)
tl_update_gen.go#L8156: return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#f9d27a5a: field data: %w", err)
tl_update_gen.go#L8163: return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#f9d27a5a: field game_short_name: %w", err)
tl_update_gen.go#L8270: return fmt.Errorf("can't encode updateReadChannelOutbox#25d6c9c7 as nil")
tl_update_gen.go#L8279: return fmt.Errorf("can't encode updateReadChannelOutbox#25d6c9c7 as nil")
tl_update_gen.go#L8299: return fmt.Errorf("can't decode updateReadChannelOutbox#25d6c9c7 to nil")
tl_update_gen.go#L8302: return fmt.Errorf("unable to decode updateReadChannelOutbox#25d6c9c7: %w", err)
tl_update_gen.go#L8310: return fmt.Errorf("can't decode updateReadChannelOutbox#25d6c9c7 to nil")
tl_update_gen.go#L8315: return fmt.Errorf("unable to decode updateReadChannelOutbox#25d6c9c7: field channel_id: %w", err)
tl_update_gen.go#L8322: return fmt.Errorf("unable to decode updateReadChannelOutbox#25d6c9c7: field max_id: %w", err)
tl_update_gen.go#L8429: return fmt.Errorf("can't encode updateDraftMessage#ee2bb969 as nil")
tl_update_gen.go#L8438: return fmt.Errorf("can't encode updateDraftMessage#ee2bb969 as nil")
tl_update_gen.go#L8441: return fmt.Errorf("unable to encode updateDraftMessage#ee2bb969: field peer is nil")
tl_update_gen.go#L8444: return fmt.Errorf("unable to encode updateDraftMessage#ee2bb969: field peer: %w", err)
tl_update_gen.go#L8447: return fmt.Errorf("unable to encode updateDraftMessage#ee2bb969: field draft is nil")
tl_update_gen.go#L8450: return fmt.Errorf("unable to encode updateDraftMessage#ee2bb969: field draft: %w", err)
tl_update_gen.go#L8468: return fmt.Errorf("can't decode updateDraftMessage#ee2bb969 to nil")
tl_update_gen.go#L8471: return fmt.Errorf("unable to decode updateDraftMessage#ee2bb969: %w", err)
tl_update_gen.go#L8479: return fmt.Errorf("can't decode updateDraftMessage#ee2bb969 to nil")
tl_update_gen.go#L8484: return fmt.Errorf("unable to decode updateDraftMessage#ee2bb969: field peer: %w", err)
tl_update_gen.go#L8491: return fmt.Errorf("unable to decode updateDraftMessage#ee2bb969: field draft: %w", err)
tl_update_gen.go#L8567: return fmt.Errorf("can't encode updateReadFeaturedStickers#571d2742 as nil")
tl_update_gen.go#L8576: return fmt.Errorf("can't encode updateReadFeaturedStickers#571d2742 as nil")
tl_update_gen.go#L8584: return fmt.Errorf("can't decode updateReadFeaturedStickers#571d2742 to nil")
tl_update_gen.go#L8587: return fmt.Errorf("unable to decode updateReadFeaturedStickers#571d2742: %w", err)
tl_update_gen.go#L8595: return fmt.Errorf("can't decode updateReadFeaturedStickers#571d2742 to nil")
tl_update_gen.go#L8669: return fmt.Errorf("can't encode updateRecentStickers#9a422c20 as nil")
tl_update_gen.go#L8678: return fmt.Errorf("can't encode updateRecentStickers#9a422c20 as nil")
tl_update_gen.go#L8686: return fmt.Errorf("can't decode updateRecentStickers#9a422c20 to nil")
tl_update_gen.go#L8689: return fmt.Errorf("unable to decode updateRecentStickers#9a422c20: %w", err)
tl_update_gen.go#L8697: return fmt.Errorf("can't decode updateRecentStickers#9a422c20 to nil")
tl_update_gen.go#L8775: return fmt.Errorf("can't encode updateConfig#a229dd06 as nil")
tl_update_gen.go#L8784: return fmt.Errorf("can't encode updateConfig#a229dd06 as nil")
tl_update_gen.go#L8792: return fmt.Errorf("can't decode updateConfig#a229dd06 to nil")
tl_update_gen.go#L8795: return fmt.Errorf("unable to decode updateConfig#a229dd06: %w", err)
tl_update_gen.go#L8803: return fmt.Errorf("can't decode updateConfig#a229dd06 to nil")
tl_update_gen.go#L8882: return fmt.Errorf("can't encode updatePtsChanged#3354678f as nil")
tl_update_gen.go#L8891: return fmt.Errorf("can't encode updatePtsChanged#3354678f as nil")
tl_update_gen.go#L8899: return fmt.Errorf("can't decode updatePtsChanged#3354678f to nil")
tl_update_gen.go#L8902: return fmt.Errorf("unable to decode updatePtsChanged#3354678f: %w", err)
tl_update_gen.go#L8910: return fmt.Errorf("can't decode updatePtsChanged#3354678f to nil")
tl_update_gen.go#L9046: return fmt.Errorf("can't encode updateChannelWebPage#40771900 as nil")
tl_update_gen.go#L9055: return fmt.Errorf("can't encode updateChannelWebPage#40771900 as nil")
tl_update_gen.go#L9059: return fmt.Errorf("unable to encode updateChannelWebPage#40771900: field webpage is nil")
tl_update_gen.go#L9062: return fmt.Errorf("unable to encode updateChannelWebPage#40771900: field webpage: %w", err)
tl_update_gen.go#L9092: return fmt.Errorf("can't decode updateChannelWebPage#40771900 to nil")
tl_update_gen.go#L9095: return fmt.Errorf("unable to decode updateChannelWebPage#40771900: %w", err)
tl_update_gen.go#L9103: return fmt.Errorf("can't decode updateChannelWebPage#40771900 to nil")
tl_update_gen.go#L9108: return fmt.Errorf("unable to decode updateChannelWebPage#40771900: field channel_id: %w", err)
tl_update_gen.go#L9115: return fmt.Errorf("unable to decode updateChannelWebPage#40771900: field webpage: %w", err)
tl_update_gen.go#L9122: return fmt.Errorf("unable to decode updateChannelWebPage#40771900: field pts: %w", err)
tl_update_gen.go#L9129: return fmt.Errorf("unable to decode updateChannelWebPage#40771900: field pts_count: %w", err)
tl_update_gen.go#L9262: return fmt.Errorf("can't encode updateDialogPinned#6e6fe51c as nil")
tl_update_gen.go#L9271: return fmt.Errorf("can't encode updateDialogPinned#6e6fe51c as nil")
tl_update_gen.go#L9280: return fmt.Errorf("unable to encode updateDialogPinned#6e6fe51c: field flags: %w", err)
tl_update_gen.go#L9286: return fmt.Errorf("unable to encode updateDialogPinned#6e6fe51c: field peer is nil")
tl_update_gen.go#L9289: return fmt.Errorf("unable to encode updateDialogPinned#6e6fe51c: field peer: %w", err)
tl_update_gen.go#L9333: return fmt.Errorf("can't decode updateDialogPinned#6e6fe51c to nil")
tl_update_gen.go#L9336: return fmt.Errorf("unable to decode updateDialogPinned#6e6fe51c: %w", err)
tl_update_gen.go#L9344: return fmt.Errorf("can't decode updateDialogPinned#6e6fe51c to nil")
tl_update_gen.go#L9348: return fmt.Errorf("unable to decode updateDialogPinned#6e6fe51c: field flags: %w", err)
tl_update_gen.go#L9355: return fmt.Errorf("unable to decode updateDialogPinned#6e6fe51c: field folder_id: %w", err)
tl_update_gen.go#L9362: return fmt.Errorf("unable to decode updateDialogPinned#6e6fe51c: field peer: %w", err)
tl_update_gen.go#L9489: return fmt.Errorf("can't encode updatePinnedDialogs#fa0f3ca2 as nil")
tl_update_gen.go#L9498: return fmt.Errorf("can't encode updatePinnedDialogs#fa0f3ca2 as nil")
tl_update_gen.go#L9507: return fmt.Errorf("unable to encode updatePinnedDialogs#fa0f3ca2: field flags: %w", err)
tl_update_gen.go#L9516: return fmt.Errorf("unable to encode updatePinnedDialogs#fa0f3ca2: field order element with index %d is nil", idx)
tl_update_gen.go#L9519: return fmt.Errorf("unable to encode updatePinnedDialogs#fa0f3ca2: field order element with index %d: %w", idx, err)
tl_update_gen.go#L9567: return fmt.Errorf("can't decode updatePinnedDialogs#fa0f3ca2 to nil")
tl_update_gen.go#L9570: return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: %w", err)
tl_update_gen.go#L9578: return fmt.Errorf("can't decode updatePinnedDialogs#fa0f3ca2 to nil")
tl_update_gen.go#L9582: return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: field flags: %w", err)
tl_update_gen.go#L9588: return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: field folder_id: %w", err)
tl_update_gen.go#L9595: return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: field order: %w", err)
tl_update_gen.go#L9600: return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: field order: %w", err)
tl_update_gen.go#L9694: return fmt.Errorf("can't encode updateBotWebhookJSON#8317c0c3 as nil")
tl_update_gen.go#L9703: return fmt.Errorf("can't encode updateBotWebhookJSON#8317c0c3 as nil")
tl_update_gen.go#L9706: return fmt.Errorf("unable to encode updateBotWebhookJSON#8317c0c3: field data: %w", err)
tl_update_gen.go#L9719: return fmt.Errorf("can't decode updateBotWebhookJSON#8317c0c3 to nil")
tl_update_gen.go#L9722: return fmt.Errorf("unable to decode updateBotWebhookJSON#8317c0c3: %w", err)
tl_update_gen.go#L9730: return fmt.Errorf("can't decode updateBotWebhookJSON#8317c0c3 to nil")
tl_update_gen.go#L9734: return fmt.Errorf("unable to decode updateBotWebhookJSON#8317c0c3: field data: %w", err)
tl_update_gen.go#L9848: return fmt.Errorf("can't encode updateBotWebhookJSONQuery#9b9240a6 as nil")
tl_update_gen.go#L9857: return fmt.Errorf("can't encode updateBotWebhookJSONQuery#9b9240a6 as nil")
tl_update_gen.go#L9861: return fmt.Errorf("unable to encode updateBotWebhookJSONQuery#9b9240a6: field data: %w", err)
tl_update_gen.go#L9885: return fmt.Errorf("can't decode updateBotWebhookJSONQuery#9b9240a6 to nil")
tl_update_gen.go#L9888: return fmt.Errorf("unable to decode updateBotWebhookJSONQuery#9b9240a6: %w", err)
tl_update_gen.go#L9896: return fmt.Errorf("can't decode updateBotWebhookJSONQuery#9b9240a6 to nil")
tl_update_gen.go#L9901: return fmt.Errorf("unable to decode updateBotWebhookJSONQuery#9b9240a6: field query_id: %w", err)
tl_update_gen.go#L9907: return fmt.Errorf("unable to decode updateBotWebhookJSONQuery#9b9240a6: field data: %w", err)
tl_update_gen.go#L9913: return fmt.Errorf("unable to decode updateBotWebhookJSONQuery#9b9240a6: field timeout: %w", err)
tl_update_gen.go#L10039: return fmt.Errorf("can't encode updateBotShippingQuery#e0cdc940 as nil")
tl_update_gen.go#L10048: return fmt.Errorf("can't encode updateBotShippingQuery#e0cdc940 as nil")
tl_update_gen.go#L10054: return fmt.Errorf("unable to encode updateBotShippingQuery#e0cdc940: field shipping_address: %w", err)
tl_update_gen.go#L10082: return fmt.Errorf("can't decode updateBotShippingQuery#e0cdc940 to nil")
tl_update_gen.go#L10085: return fmt.Errorf("unable to decode updateBotShippingQuery#e0cdc940: %w", err)
tl_update_gen.go#L10093: return fmt.Errorf("can't decode updateBotShippingQuery#e0cdc940 to nil")
tl_update_gen.go#L10098: return fmt.Errorf("unable to decode updateBotShippingQuery#e0cdc940: field query_id: %w", err)
tl_update_gen.go#L10105: return fmt.Errorf("unable to decode updateBotShippingQuery#e0cdc940: field user_id: %w", err)
tl_update_gen.go#L10112: return fmt.Errorf("unable to decode updateBotShippingQuery#e0cdc940: field payload: %w", err)
tl_update_gen.go#L10118: return fmt.Errorf("unable to decode updateBotShippingQuery#e0cdc940: field shipping_address: %w", err)
tl_update_gen.go#L10305: return fmt.Errorf("can't encode updateBotPrecheckoutQuery#5d2f3aa9 as nil")
tl_update_gen.go#L10314: return fmt.Errorf("can't encode updateBotPrecheckoutQuery#5d2f3aa9 as nil")
tl_update_gen.go#L10323: return fmt.Errorf("unable to encode updateBotPrecheckoutQuery#5d2f3aa9: field flags: %w", err)
tl_update_gen.go#L10330: return fmt.Errorf("unable to encode updateBotPrecheckoutQuery#5d2f3aa9: field info: %w", err)
tl_update_gen.go#L10399: return fmt.Errorf("can't decode updateBotPrecheckoutQuery#5d2f3aa9 to nil")
tl_update_gen.go#L10402: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: %w", err)
tl_update_gen.go#L10410: return fmt.Errorf("can't decode updateBotPrecheckoutQuery#5d2f3aa9 to nil")
tl_update_gen.go#L10414: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: field flags: %w", err)
tl_update_gen.go#L10420: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: field query_id: %w", err)
tl_update_gen.go#L10427: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: field user_id: %w", err)
tl_update_gen.go#L10434: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: field payload: %w", err)
tl_update_gen.go#L10440: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: field info: %w", err)
tl_update_gen.go#L10446: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: field shipping_option_id: %w", err)
tl_update_gen.go#L10453: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: field currency: %w", err)
tl_update_gen.go#L10460: return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#5d2f3aa9: field total_amount: %w", err)
tl_update_gen.go#L10553: return fmt.Errorf("can't encode updatePhoneCall#ab0f6b1e as nil")
tl_update_gen.go#L10562: return fmt.Errorf("can't encode updatePhoneCall#ab0f6b1e as nil")
tl_update_gen.go#L10565: return fmt.Errorf("unable to encode updatePhoneCall#ab0f6b1e: field phone_call is nil")
tl_update_gen.go#L10568: return fmt.Errorf("unable to encode updatePhoneCall#ab0f6b1e: field phone_call: %w", err)
tl_update_gen.go#L10581: return fmt.Errorf("can't decode updatePhoneCall#ab0f6b1e to nil")
tl_update_gen.go#L10584: return fmt.Errorf("unable to decode updatePhoneCall#ab0f6b1e: %w", err)
tl_update_gen.go#L10592: return fmt.Errorf("can't decode updatePhoneCall#ab0f6b1e to nil")
tl_update_gen.go#L10597: return fmt.Errorf("unable to decode updatePhoneCall#ab0f6b1e: field phone_call: %w", err)
tl_update_gen.go#L10694: return fmt.Errorf("can't encode updateLangPackTooLong#46560264 as nil")
tl_update_gen.go#L10703: return fmt.Errorf("can't encode updateLangPackTooLong#46560264 as nil")
tl_update_gen.go#L10717: return fmt.Errorf("can't decode updateLangPackTooLong#46560264 to nil")
tl_update_gen.go#L10720: return fmt.Errorf("unable to decode updateLangPackTooLong#46560264: %w", err)
tl_update_gen.go#L10728: return fmt.Errorf("can't decode updateLangPackTooLong#46560264 to nil")
tl_update_gen.go#L10733: return fmt.Errorf("unable to decode updateLangPackTooLong#46560264: field lang_code: %w", err)
tl_update_gen.go#L10826: return fmt.Errorf("can't encode updateLangPack#56022f4d as nil")
tl_update_gen.go#L10835: return fmt.Errorf("can't encode updateLangPack#56022f4d as nil")
tl_update_gen.go#L10838: return fmt.Errorf("unable to encode updateLangPack#56022f4d: field difference: %w", err)
tl_update_gen.go#L10851: return fmt.Errorf("can't decode updateLangPack#56022f4d to nil")
tl_update_gen.go#L10854: return fmt.Errorf("unable to decode updateLangPack#56022f4d: %w", err)
tl_update_gen.go#L10862: return fmt.Errorf("can't decode updateLangPack#56022f4d to nil")
tl_update_gen.go#L10866: return fmt.Errorf("unable to decode updateLangPack#56022f4d: field difference: %w", err)
tl_update_gen.go#L10945: return fmt.Errorf("can't encode updateFavedStickers#e511996d as nil")
tl_update_gen.go#L10954: return fmt.Errorf("can't encode updateFavedStickers#e511996d as nil")
tl_update_gen.go#L10962: return fmt.Errorf("can't decode updateFavedStickers#e511996d to nil")
tl_update_gen.go#L10965: return fmt.Errorf("unable to decode updateFavedStickers#e511996d: %w", err)
tl_update_gen.go#L10973: return fmt.Errorf("can't decode updateFavedStickers#e511996d to nil")
tl_update_gen.go#L11081: return fmt.Errorf("can't encode updateChannelReadMessagesContents#89893b45 as nil")
tl_update_gen.go#L11090: return fmt.Errorf("can't encode updateChannelReadMessagesContents#89893b45 as nil")
tl_update_gen.go#L11113: return fmt.Errorf("can't decode updateChannelReadMessagesContents#89893b45 to nil")
tl_update_gen.go#L11116: return fmt.Errorf("unable to decode updateChannelReadMessagesContents#89893b45: %w", err)
tl_update_gen.go#L11124: return fmt.Errorf("can't decode updateChannelReadMessagesContents#89893b45 to nil")
tl_update_gen.go#L11129: return fmt.Errorf("unable to decode updateChannelReadMessagesContents#89893b45: field channel_id: %w", err)
tl_update_gen.go#L11136: return fmt.Errorf("unable to decode updateChannelReadMessagesContents#89893b45: field messages: %w", err)
tl_update_gen.go#L11141: return fmt.Errorf("unable to decode updateChannelReadMessagesContents#89893b45: field messages: %w", err)
tl_update_gen.go#L11218: return fmt.Errorf("can't encode updateContactsReset#7084a7be as nil")
tl_update_gen.go#L11227: return fmt.Errorf("can't encode updateContactsReset#7084a7be as nil")
tl_update_gen.go#L11235: return fmt.Errorf("can't decode updateContactsReset#7084a7be to nil")
tl_update_gen.go#L11238: return fmt.Errorf("unable to decode updateContactsReset#7084a7be: %w", err)
tl_update_gen.go#L11246: return fmt.Errorf("can't decode updateContactsReset#7084a7be to nil")
tl_update_gen.go#L11351: return fmt.Errorf("can't encode updateChannelAvailableMessages#70db6837 as nil")
tl_update_gen.go#L11360: return fmt.Errorf("can't encode updateChannelAvailableMessages#70db6837 as nil")
tl_update_gen.go#L11380: return fmt.Errorf("can't decode updateChannelAvailableMessages#70db6837 to nil")
tl_update_gen.go#L11383: return fmt.Errorf("unable to decode updateChannelAvailableMessages#70db6837: %w", err)
tl_update_gen.go#L11391: return fmt.Errorf("can't decode updateChannelAvailableMessages#70db6837 to nil")
tl_update_gen.go#L11396: return fmt.Errorf("unable to decode updateChannelAvailableMessages#70db6837: field channel_id: %w", err)
tl_update_gen.go#L11403: return fmt.Errorf("unable to decode updateChannelAvailableMessages#70db6837: field available_min_id: %w", err)
tl_update_gen.go#L11516: return fmt.Errorf("can't encode updateDialogUnreadMark#e16459c3 as nil")
tl_update_gen.go#L11525: return fmt.Errorf("can't encode updateDialogUnreadMark#e16459c3 as nil")
tl_update_gen.go#L11531: return fmt.Errorf("unable to encode updateDialogUnreadMark#e16459c3: field flags: %w", err)
tl_update_gen.go#L11534: return fmt.Errorf("unable to encode updateDialogUnreadMark#e16459c3: field peer is nil")
tl_update_gen.go#L11537: return fmt.Errorf("unable to encode updateDialogUnreadMark#e16459c3: field peer: %w", err)
tl_update_gen.go#L11566: return fmt.Errorf("can't decode updateDialogUnreadMark#e16459c3 to nil")
tl_update_gen.go#L11569: return fmt.Errorf("unable to decode updateDialogUnreadMark#e16459c3: %w", err)
tl_update_gen.go#L11577: return fmt.Errorf("can't decode updateDialogUnreadMark#e16459c3 to nil")
tl_update_gen.go#L11581: return fmt.Errorf("unable to decode updateDialogUnreadMark#e16459c3: field flags: %w", err)
tl_update_gen.go#L11588: return fmt.Errorf("unable to decode updateDialogUnreadMark#e16459c3: field peer: %w", err)
tl_update_gen.go#L11717: return fmt.Errorf("can't encode updateMessagePoll#aca1657b as nil")
tl_update_gen.go#L11726: return fmt.Errorf("can't encode updateMessagePoll#aca1657b as nil")
tl_update_gen.go#L11732: return fmt.Errorf("unable to encode updateMessagePoll#aca1657b: field flags: %w", err)
tl_update_gen.go#L11737: return fmt.Errorf("unable to encode updateMessagePoll#aca1657b: field poll: %w", err)
tl_update_gen.go#L11741: return fmt.Errorf("unable to encode updateMessagePoll#aca1657b: field results: %w", err)
tl_update_gen.go#L11774: return fmt.Errorf("can't decode updateMessagePoll#aca1657b to nil")
tl_update_gen.go#L11777: return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: %w", err)
tl_update_gen.go#L11785: return fmt.Errorf("can't decode updateMessagePoll#aca1657b to nil")
tl_update_gen.go#L11789: return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: field flags: %w", err)
tl_update_gen.go#L11795: return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: field poll_id: %w", err)
tl_update_gen.go#L11801: return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: field poll: %w", err)
tl_update_gen.go#L11806: return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: field results: %w", err)
tl_update_gen.go#L11923: return fmt.Errorf("can't encode updateChatDefaultBannedRights#54c01850 as nil")
tl_update_gen.go#L11932: return fmt.Errorf("can't encode updateChatDefaultBannedRights#54c01850 as nil")
tl_update_gen.go#L11935: return fmt.Errorf("unable to encode updateChatDefaultBannedRights#54c01850: field peer is nil")
tl_update_gen.go#L11938: return fmt.Errorf("unable to encode updateChatDefaultBannedRights#54c01850: field peer: %w", err)
tl_update_gen.go#L11941: return fmt.Errorf("unable to encode updateChatDefaultBannedRights#54c01850: field default_banned_rights: %w", err)
tl_update_gen.go#L11965: return fmt.Errorf("can't decode updateChatDefaultBannedRights#54c01850 to nil")
tl_update_gen.go#L11968: return fmt.Errorf("unable to decode updateChatDefaultBannedRights#54c01850: %w", err)
tl_update_gen.go#L11976: return fmt.Errorf("can't decode updateChatDefaultBannedRights#54c01850 to nil")
tl_update_gen.go#L11981: return fmt.Errorf("unable to decode updateChatDefaultBannedRights#54c01850: field peer: %w", err)
tl_update_gen.go#L11987: return fmt.Errorf("unable to decode updateChatDefaultBannedRights#54c01850: field default_banned_rights: %w", err)
tl_update_gen.go#L11993: return fmt.Errorf("unable to decode updateChatDefaultBannedRights#54c01850: field version: %w", err)
tl_update_gen.go#L12117: return fmt.Errorf("can't encode updateFolderPeers#19360dc0 as nil")
tl_update_gen.go#L12126: return fmt.Errorf("can't encode updateFolderPeers#19360dc0 as nil")
tl_update_gen.go#L12131: return fmt.Errorf("unable to encode updateFolderPeers#19360dc0: field folder_peers element with index %d: %w", idx, err)
tl_update_gen.go#L12157: return fmt.Errorf("can't decode updateFolderPeers#19360dc0 to nil")
tl_update_gen.go#L12160: return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: %w", err)
tl_update_gen.go#L12168: return fmt.Errorf("can't decode updateFolderPeers#19360dc0 to nil")
tl_update_gen.go#L12173: return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: field folder_peers: %w", err)
tl_update_gen.go#L12178: return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: field folder_peers: %w", err)
tl_update_gen.go#L12186: return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: field pts: %w", err)
tl_update_gen.go#L12193: return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: field pts_count: %w", err)
tl_update_gen.go#L12297: return fmt.Errorf("can't encode updatePeerSettings#6a7e7366 as nil")
tl_update_gen.go#L12306: return fmt.Errorf("can't encode updatePeerSettings#6a7e7366 as nil")
tl_update_gen.go#L12309: return fmt.Errorf("unable to encode updatePeerSettings#6a7e7366: field peer is nil")
tl_update_gen.go#L12312: return fmt.Errorf("unable to encode updatePeerSettings#6a7e7366: field peer: %w", err)
tl_update_gen.go#L12315: return fmt.Errorf("unable to encode updatePeerSettings#6a7e7366: field settings: %w", err)
tl_update_gen.go#L12333: return fmt.Errorf("can't decode updatePeerSettings#6a7e7366 to nil")
tl_update_gen.go#L12336: return fmt.Errorf("unable to decode updatePeerSettings#6a7e7366: %w", err)
tl_update_gen.go#L12344: return fmt.Errorf("can't decode updatePeerSettings#6a7e7366 to nil")
tl_update_gen.go#L12349: return fmt.Errorf("unable to decode updatePeerSettings#6a7e7366: field peer: %w", err)
tl_update_gen.go#L12355: return fmt.Errorf("unable to decode updatePeerSettings#6a7e7366: field settings: %w", err)
tl_update_gen.go#L12447: return fmt.Errorf("can't encode updatePeerLocated#b4afcfb0 as nil")
tl_update_gen.go#L12456: return fmt.Errorf("can't encode updatePeerLocated#b4afcfb0 as nil")
tl_update_gen.go#L12461: return fmt.Errorf("unable to encode updatePeerLocated#b4afcfb0: field peers element with index %d is nil", idx)
tl_update_gen.go#L12464: return fmt.Errorf("unable to encode updatePeerLocated#b4afcfb0: field peers element with index %d: %w", idx, err)
tl_update_gen.go#L12483: return fmt.Errorf("can't decode updatePeerLocated#b4afcfb0 to nil")
tl_update_gen.go#L12486: return fmt.Errorf("unable to decode updatePeerLocated#b4afcfb0: %w", err)
tl_update_gen.go#L12494: return fmt.Errorf("can't decode updatePeerLocated#b4afcfb0 to nil")
tl_update_gen.go#L12499: return fmt.Errorf("unable to decode updatePeerLocated#b4afcfb0: field peers: %w", err)
tl_update_gen.go#L12504: return fmt.Errorf("unable to decode updatePeerLocated#b4afcfb0: field peers: %w", err)
tl_update_gen.go#L12601: return fmt.Errorf("can't encode updateNewScheduledMessage#39a51dfb as nil")
tl_update_gen.go#L12610: return fmt.Errorf("can't encode updateNewScheduledMessage#39a51dfb as nil")
tl_update_gen.go#L12613: return fmt.Errorf("unable to encode updateNewScheduledMessage#39a51dfb: field message is nil")
tl_update_gen.go#L12616: return fmt.Errorf("unable to encode updateNewScheduledMessage#39a51dfb: field message: %w", err)
tl_update_gen.go#L12629: return fmt.Errorf("can't decode updateNewScheduledMessage#39a51dfb to nil")
tl_update_gen.go#L12632: return fmt.Errorf("unable to decode updateNewScheduledMessage#39a51dfb: %w", err)
tl_update_gen.go#L12640: return fmt.Errorf("can't decode updateNewScheduledMessage#39a51dfb to nil")
tl_update_gen.go#L12645: return fmt.Errorf("unable to decode updateNewScheduledMessage#39a51dfb: field message: %w", err)
tl_update_gen.go#L12752: return fmt.Errorf("can't encode updateDeleteScheduledMessages#90866cee as nil")
tl_update_gen.go#L12761: return fmt.Errorf("can't encode updateDeleteScheduledMessages#90866cee as nil")
tl_update_gen.go#L12764: return fmt.Errorf("unable to encode updateDeleteScheduledMessages#90866cee: field peer is nil")
tl_update_gen.go#L12767: return fmt.Errorf("unable to encode updateDeleteScheduledMessages#90866cee: field peer: %w", err)
tl_update_gen.go#L12789: return fmt.Errorf("can't decode updateDeleteScheduledMessages#90866cee to nil")
tl_update_gen.go#L12792: return fmt.Errorf("unable to decode updateDeleteScheduledMessages#90866cee: %w", err)
tl_update_gen.go#L12800: return fmt.Errorf("can't decode updateDeleteScheduledMessages#90866cee to nil")
tl_update_gen.go#L12805: return fmt.Errorf("unable to decode updateDeleteScheduledMessages#90866cee: field peer: %w", err)
tl_update_gen.go#L12812: return fmt.Errorf("unable to decode updateDeleteScheduledMessages#90866cee: field messages: %w", err)
tl_update_gen.go#L12817: return fmt.Errorf("unable to decode updateDeleteScheduledMessages#90866cee: field messages: %w", err)
tl_update_gen.go#L12911: return fmt.Errorf("can't encode updateTheme#8216fba3 as nil")
tl_update_gen.go#L12920: return fmt.Errorf("can't encode updateTheme#8216fba3 as nil")
tl_update_gen.go#L12923: return fmt.Errorf("unable to encode updateTheme#8216fba3: field theme: %w", err)
tl_update_gen.go#L12936: return fmt.Errorf("can't decode updateTheme#8216fba3 to nil")
tl_update_gen.go#L12939: return fmt.Errorf("unable to decode updateTheme#8216fba3: %w", err)
tl_update_gen.go#L12947: return fmt.Errorf("can't decode updateTheme#8216fba3 to nil")
tl_update_gen.go#L12951: return fmt.Errorf("unable to decode updateTheme#8216fba3: field theme: %w", err)
tl_update_gen.go#L13054: return fmt.Errorf("can't encode updateGeoLiveViewed#871fb939 as nil")
tl_update_gen.go#L13063: return fmt.Errorf("can't encode updateGeoLiveViewed#871fb939 as nil")
tl_update_gen.go#L13066: return fmt.Errorf("unable to encode updateGeoLiveViewed#871fb939: field peer is nil")
tl_update_gen.go#L13069: return fmt.Errorf("unable to encode updateGeoLiveViewed#871fb939: field peer: %w", err)
tl_update_gen.go#L13088: return fmt.Errorf("can't decode updateGeoLiveViewed#871fb939 to nil")
tl_update_gen.go#L13091: return fmt.Errorf("unable to decode updateGeoLiveViewed#871fb939: %w", err)
tl_update_gen.go#L13099: return fmt.Errorf("can't decode updateGeoLiveViewed#871fb939 to nil")
tl_update_gen.go#L13104: return fmt.Errorf("unable to decode updateGeoLiveViewed#871fb939: field peer: %w", err)
tl_update_gen.go#L13111: return fmt.Errorf("unable to decode updateGeoLiveViewed#871fb939: field msg_id: %w", err)
tl_update_gen.go#L13187: return fmt.Errorf("can't encode updateLoginToken#564fe691 as nil")
tl_update_gen.go#L13196: return fmt.Errorf("can't encode updateLoginToken#564fe691 as nil")
tl_update_gen.go#L13204: return fmt.Errorf("can't decode updateLoginToken#564fe691 to nil")
tl_update_gen.go#L13207: return fmt.Errorf("unable to decode updateLoginToken#564fe691: %w", err)
tl_update_gen.go#L13215: return fmt.Errorf("can't decode updateLoginToken#564fe691 to nil")
tl_update_gen.go#L13328: return fmt.Errorf("can't encode updateMessagePollVote#42f88f2c as nil")
tl_update_gen.go#L13337: return fmt.Errorf("can't encode updateMessagePollVote#42f88f2c as nil")
tl_update_gen.go#L13366: return fmt.Errorf("can't decode updateMessagePollVote#42f88f2c to nil")
tl_update_gen.go#L13369: return fmt.Errorf("unable to decode updateMessagePollVote#42f88f2c: %w", err)
tl_update_gen.go#L13377: return fmt.Errorf("can't decode updateMessagePollVote#42f88f2c to nil")
tl_update_gen.go#L13382: return fmt.Errorf("unable to decode updateMessagePollVote#42f88f2c: field poll_id: %w", err)
tl_update_gen.go#L13389: return fmt.Errorf("unable to decode updateMessagePollVote#42f88f2c: field user_id: %w", err)
tl_update_gen.go#L13396: return fmt.Errorf("unable to decode updateMessagePollVote#42f88f2c: field options: %w", err)
tl_update_gen.go#L13401: return fmt.Errorf("unable to decode updateMessagePollVote#42f88f2c: field options: %w", err)
tl_update_gen.go#L13529: return fmt.Errorf("can't encode updateDialogFilter#26ffde7d as nil")
tl_update_gen.go#L13538: return fmt.Errorf("can't encode updateDialogFilter#26ffde7d as nil")
tl_update_gen.go#L13544: return fmt.Errorf("unable to encode updateDialogFilter#26ffde7d: field flags: %w", err)
tl_update_gen.go#L13549: return fmt.Errorf("unable to encode updateDialogFilter#26ffde7d: field filter: %w", err)
tl_update_gen.go#L13578: return fmt.Errorf("can't decode updateDialogFilter#26ffde7d to nil")
tl_update_gen.go#L13581: return fmt.Errorf("unable to decode updateDialogFilter#26ffde7d: %w", err)
tl_update_gen.go#L13589: return fmt.Errorf("can't decode updateDialogFilter#26ffde7d to nil")
tl_update_gen.go#L13593: return fmt.Errorf("unable to decode updateDialogFilter#26ffde7d: field flags: %w", err)
tl_update_gen.go#L13599: return fmt.Errorf("unable to decode updateDialogFilter#26ffde7d: field id: %w", err)
tl_update_gen.go#L13605: return fmt.Errorf("unable to decode updateDialogFilter#26ffde7d: field filter: %w", err)
tl_update_gen.go#L13703: return fmt.Errorf("can't encode updateDialogFilterOrder#a5d72105 as nil")
tl_update_gen.go#L13712: return fmt.Errorf("can't encode updateDialogFilterOrder#a5d72105 as nil")
tl_update_gen.go#L13729: return fmt.Errorf("can't decode updateDialogFilterOrder#a5d72105 to nil")
tl_update_gen.go#L13732: return fmt.Errorf("unable to decode updateDialogFilterOrder#a5d72105: %w", err)
tl_update_gen.go#L13740: return fmt.Errorf("can't decode updateDialogFilterOrder#a5d72105 to nil")
tl_update_gen.go#L13745: return fmt.Errorf("unable to decode updateDialogFilterOrder#a5d72105: field order: %w", err)
tl_update_gen.go#L13750: return fmt.Errorf("unable to decode updateDialogFilterOrder#a5d72105: field order: %w", err)
tl_update_gen.go#L13830: return fmt.Errorf("can't encode updateDialogFilters#3504914f as nil")
tl_update_gen.go#L13839: return fmt.Errorf("can't encode updateDialogFilters#3504914f as nil")
tl_update_gen.go#L13847: return fmt.Errorf("can't decode updateDialogFilters#3504914f to nil")
tl_update_gen.go#L13850: return fmt.Errorf("unable to decode updateDialogFilters#3504914f: %w", err)
tl_update_gen.go#L13858: return fmt.Errorf("can't decode updateDialogFilters#3504914f to nil")
tl_update_gen.go#L13960: return fmt.Errorf("can't encode updatePhoneCallSignalingData#2661bf09 as nil")
tl_update_gen.go#L13969: return fmt.Errorf("can't encode updatePhoneCallSignalingData#2661bf09 as nil")
tl_update_gen.go#L13989: return fmt.Errorf("can't decode updatePhoneCallSignalingData#2661bf09 to nil")
tl_update_gen.go#L13992: return fmt.Errorf("unable to decode updatePhoneCallSignalingData#2661bf09: %w", err)
tl_update_gen.go#L14000: return fmt.Errorf("can't decode updatePhoneCallSignalingData#2661bf09 to nil")
tl_update_gen.go#L14005: return fmt.Errorf("unable to decode updatePhoneCallSignalingData#2661bf09: field phone_call_id: %w", err)
tl_update_gen.go#L14012: return fmt.Errorf("unable to decode updatePhoneCallSignalingData#2661bf09: field data: %w", err)
tl_update_gen.go#L14127: return fmt.Errorf("can't encode updateChannelMessageForwards#6e8a84df as nil")
tl_update_gen.go#L14136: return fmt.Errorf("can't encode updateChannelMessageForwards#6e8a84df as nil")
tl_update_gen.go#L14162: return fmt.Errorf("can't decode updateChannelMessageForwards#6e8a84df to nil")
tl_update_gen.go#L14165: return fmt.Errorf("unable to decode updateChannelMessageForwards#6e8a84df: %w", err)
tl_update_gen.go#L14173: return fmt.Errorf("can't decode updateChannelMessageForwards#6e8a84df to nil")
tl_update_gen.go#L14178: return fmt.Errorf("unable to decode updateChannelMessageForwards#6e8a84df: field channel_id: %w", err)
tl_update_gen.go#L14185: return fmt.Errorf("unable to decode updateChannelMessageForwards#6e8a84df: field id: %w", err)
tl_update_gen.go#L14192: return fmt.Errorf("unable to decode updateChannelMessageForwards#6e8a84df: field forwards: %w", err)
tl_update_gen.go#L14369: return fmt.Errorf("can't encode updateReadChannelDiscussionInbox#1cc7de54 as nil")
tl_update_gen.go#L14378: return fmt.Errorf("can't encode updateReadChannelDiscussionInbox#1cc7de54 as nil")
tl_update_gen.go#L14387: return fmt.Errorf("unable to encode updateReadChannelDiscussionInbox#1cc7de54: field flags: %w", err)
tl_update_gen.go#L14449: return fmt.Errorf("can't decode updateReadChannelDiscussionInbox#1cc7de54 to nil")
tl_update_gen.go#L14452: return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#1cc7de54: %w", err)
tl_update_gen.go#L14460: return fmt.Errorf("can't decode updateReadChannelDiscussionInbox#1cc7de54 to nil")
tl_update_gen.go#L14464: return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#1cc7de54: field flags: %w", err)
tl_update_gen.go#L14470: return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#1cc7de54: field channel_id: %w", err)
tl_update_gen.go#L14477: return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#1cc7de54: field top_msg_id: %w", err)
tl_update_gen.go#L14484: return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#1cc7de54: field read_max_id: %w", err)
tl_update_gen.go#L14491: return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#1cc7de54: field broadcast_id: %w", err)
tl_update_gen.go#L14498: return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#1cc7de54: field broadcast_post: %w", err)
tl_update_gen.go#L14625: return fmt.Errorf("can't encode updateReadChannelDiscussionOutbox#4638a26c as nil")
tl_update_gen.go#L14634: return fmt.Errorf("can't encode updateReadChannelDiscussionOutbox#4638a26c as nil")
tl_update_gen.go#L14660: return fmt.Errorf("can't decode updateReadChannelDiscussionOutbox#4638a26c to nil")
tl_update_gen.go#L14663: return fmt.Errorf("unable to decode updateReadChannelDiscussionOutbox#4638a26c: %w", err)
tl_update_gen.go#L14671: return fmt.Errorf("can't decode updateReadChannelDiscussionOutbox#4638a26c to nil")
tl_update_gen.go#L14676: return fmt.Errorf("unable to decode updateReadChannelDiscussionOutbox#4638a26c: field channel_id: %w", err)
tl_update_gen.go#L14683: return fmt.Errorf("unable to decode updateReadChannelDiscussionOutbox#4638a26c: field top_msg_id: %w", err)
tl_update_gen.go#L14690: return fmt.Errorf("unable to decode updateReadChannelDiscussionOutbox#4638a26c: field read_max_id: %w", err)
tl_update_gen.go#L14794: return fmt.Errorf("can't encode updatePeerBlocked#246a4b22 as nil")
tl_update_gen.go#L14803: return fmt.Errorf("can't encode updatePeerBlocked#246a4b22 as nil")
tl_update_gen.go#L14806: return fmt.Errorf("unable to encode updatePeerBlocked#246a4b22: field peer_id is nil")
tl_update_gen.go#L14809: return fmt.Errorf("unable to encode updatePeerBlocked#246a4b22: field peer_id: %w", err)
tl_update_gen.go#L14828: return fmt.Errorf("can't decode updatePeerBlocked#246a4b22 to nil")
tl_update_gen.go#L14831: return fmt.Errorf("unable to decode updatePeerBlocked#246a4b22: %w", err)
tl_update_gen.go#L14839: return fmt.Errorf("can't decode updatePeerBlocked#246a4b22 to nil")
tl_update_gen.go#L14844: return fmt.Errorf("unable to decode updatePeerBlocked#246a4b22: field peer_id: %w", err)
tl_update_gen.go#L14851: return fmt.Errorf("unable to decode updatePeerBlocked#246a4b22: field blocked: %w", err)
tl_update_gen.go#L14998: return fmt.Errorf("can't encode updateChannelUserTyping#6b171718 as nil")
tl_update_gen.go#L15007: return fmt.Errorf("can't encode updateChannelUserTyping#6b171718 as nil")
tl_update_gen.go#L15013: return fmt.Errorf("unable to encode updateChannelUserTyping#6b171718: field flags: %w", err)
tl_update_gen.go#L15020: return fmt.Errorf("unable to encode updateChannelUserTyping#6b171718: field from_id is nil")
tl_update_gen.go#L15023: return fmt.Errorf("unable to encode updateChannelUserTyping#6b171718: field from_id: %w", err)
tl_update_gen.go#L15026: return fmt.Errorf("unable to encode updateChannelUserTyping#6b171718: field action is nil")
tl_update_gen.go#L15029: return fmt.Errorf("unable to encode updateChannelUserTyping#6b171718: field action: %w", err)
tl_update_gen.go#L15067: return fmt.Errorf("can't decode updateChannelUserTyping#6b171718 to nil")
tl_update_gen.go#L15070: return fmt.Errorf("unable to decode updateChannelUserTyping#6b171718: %w", err)
tl_update_gen.go#L15078: return fmt.Errorf("can't decode updateChannelUserTyping#6b171718 to nil")
tl_update_gen.go#L15082: return fmt.Errorf("unable to decode updateChannelUserTyping#6b171718: field flags: %w", err)
tl_update_gen.go#L15088: return fmt.Errorf("unable to decode updateChannelUserTyping#6b171718: field channel_id: %w", err)
tl_update_gen.go#L15095: return fmt.Errorf("unable to decode updateChannelUserTyping#6b171718: field top_msg_id: %w", err)
tl_update_gen.go#L15102: return fmt.Errorf("unable to decode updateChannelUserTyping#6b171718: field from_id: %w", err)
tl_update_gen.go#L15109: return fmt.Errorf("unable to decode updateChannelUserTyping#6b171718: field action: %w", err)
tl_update_gen.go#L15261: return fmt.Errorf("can't encode updatePinnedMessages#ed85eab5 as nil")
tl_update_gen.go#L15270: return fmt.Errorf("can't encode updatePinnedMessages#ed85eab5 as nil")
tl_update_gen.go#L15276: return fmt.Errorf("unable to encode updatePinnedMessages#ed85eab5: field flags: %w", err)
tl_update_gen.go#L15279: return fmt.Errorf("unable to encode updatePinnedMessages#ed85eab5: field peer is nil")
tl_update_gen.go#L15282: return fmt.Errorf("unable to encode updatePinnedMessages#ed85eab5: field peer: %w", err)
tl_update_gen.go#L15332: return fmt.Errorf("can't decode updatePinnedMessages#ed85eab5 to nil")
tl_update_gen.go#L15335: return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: %w", err)
tl_update_gen.go#L15343: return fmt.Errorf("can't decode updatePinnedMessages#ed85eab5 to nil")
tl_update_gen.go#L15347: return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field flags: %w", err)
tl_update_gen.go#L15354: return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field peer: %w", err)
tl_update_gen.go#L15361: return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field messages: %w", err)
tl_update_gen.go#L15366: return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field messages: %w", err)
tl_update_gen.go#L15374: return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field pts: %w", err)
tl_update_gen.go#L15381: return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field pts_count: %w", err)
tl_update_gen.go#L15536: return fmt.Errorf("can't encode updatePinnedChannelMessages#8588878b as nil")
tl_update_gen.go#L15545: return fmt.Errorf("can't encode updatePinnedChannelMessages#8588878b as nil")
tl_update_gen.go#L15551: return fmt.Errorf("unable to encode updatePinnedChannelMessages#8588878b: field flags: %w", err)
tl_update_gen.go#L15602: return fmt.Errorf("can't decode updatePinnedChannelMessages#8588878b to nil")
tl_update_gen.go#L15605: return fmt.Errorf("unable to decode updatePinnedChannelMessages#8588878b: %w", err)
tl_update_gen.go#L15613: return fmt.Errorf("can't decode updatePinnedChannelMessages#8588878b to nil")
tl_update_gen.go#L15617: return fmt.Errorf("unable to decode updatePinnedChannelMessages#8588878b: field flags: %w", err)
tl_update_gen.go#L15624: return fmt.Errorf("unable to decode updatePinnedChannelMessages#8588878b: field channel_id: %w", err)
tl_update_gen.go#L15631: return fmt.Errorf("unable to decode updatePinnedChannelMessages#8588878b: field messages: %w", err)
tl_update_gen.go#L15636: return fmt.Errorf("unable to decode updatePinnedChannelMessages#8588878b: field messages: %w", err)
tl_update_gen.go#L15644: return fmt.Errorf("unable to decode updatePinnedChannelMessages#8588878b: field pts: %w", err)
tl_update_gen.go#L15651: return fmt.Errorf("unable to decode updatePinnedChannelMessages#8588878b: field pts_count: %w", err)
tl_update_gen.go#L15743: return fmt.Errorf("can't encode updateChat#1330a196 as nil")
tl_update_gen.go#L15752: return fmt.Errorf("can't encode updateChat#1330a196 as nil")
tl_update_gen.go#L15766: return fmt.Errorf("can't decode updateChat#1330a196 to nil")
tl_update_gen.go#L15769: return fmt.Errorf("unable to decode updateChat#1330a196: %w", err)
tl_update_gen.go#L15777: return fmt.Errorf("can't decode updateChat#1330a196 to nil")
tl_update_gen.go#L15782: return fmt.Errorf("unable to decode updateChat#1330a196: field chat_id: %w", err)
tl_update_gen.go#L15896: return fmt.Errorf("can't encode updateGroupCallParticipants#f2ebdb4e as nil")
tl_update_gen.go#L15905: return fmt.Errorf("can't encode updateGroupCallParticipants#f2ebdb4e as nil")
tl_update_gen.go#L15908: return fmt.Errorf("unable to encode updateGroupCallParticipants#f2ebdb4e: field call: %w", err)
tl_update_gen.go#L15913: return fmt.Errorf("unable to encode updateGroupCallParticipants#f2ebdb4e: field participants element with index %d: %w", idx, err)
tl_update_gen.go#L15938: return fmt.Errorf("can't decode updateGroupCallParticipants#f2ebdb4e to nil")
tl_update_gen.go#L15941: return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: %w", err)
tl_update_gen.go#L15949: return fmt.Errorf("can't decode updateGroupCallParticipants#f2ebdb4e to nil")
tl_update_gen.go#L15953: return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: field call: %w", err)
tl_update_gen.go#L15959: return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: field participants: %w", err)
tl_update_gen.go#L15964: return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: field participants: %w", err)
tl_update_gen.go#L15972: return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: field version: %w", err)
tl_update_gen.go#L16075: return fmt.Errorf("can't encode updateGroupCall#a45eb99b as nil")
tl_update_gen.go#L16084: return fmt.Errorf("can't encode updateGroupCall#a45eb99b as nil")
tl_update_gen.go#L16088: return fmt.Errorf("unable to encode updateGroupCall#a45eb99b: field call is nil")
tl_update_gen.go#L16091: return fmt.Errorf("unable to encode updateGroupCall#a45eb99b: field call: %w", err)
tl_update_gen.go#L16109: return fmt.Errorf("can't decode updateGroupCall#a45eb99b to nil")
tl_update_gen.go#L16112: return fmt.Errorf("unable to decode updateGroupCall#a45eb99b: %w", err)
tl_update_gen.go#L16120: return fmt.Errorf("can't decode updateGroupCall#a45eb99b to nil")
tl_update_gen.go#L16125: return fmt.Errorf("unable to decode updateGroupCall#a45eb99b: field chat_id: %w", err)
tl_update_gen.go#L16132: return fmt.Errorf("unable to decode updateGroupCall#a45eb99b: field call: %w", err)
tl_update_gen.go#L16246: return fmt.Errorf("can't encode updatePeerHistoryTTL#bb9bb9a5 as nil")
tl_update_gen.go#L16255: return fmt.Errorf("can't encode updatePeerHistoryTTL#bb9bb9a5 as nil")
tl_update_gen.go#L16261: return fmt.Errorf("unable to encode updatePeerHistoryTTL#bb9bb9a5: field flags: %w", err)
tl_update_gen.go#L16264: return fmt.Errorf("unable to encode updatePeerHistoryTTL#bb9bb9a5: field peer is nil")
tl_update_gen.go#L16267: return fmt.Errorf("unable to encode updatePeerHistoryTTL#bb9bb9a5: field peer: %w", err)
tl_update_gen.go#L16298: return fmt.Errorf("can't decode updatePeerHistoryTTL#bb9bb9a5 to nil")
tl_update_gen.go#L16301: return fmt.Errorf("unable to decode updatePeerHistoryTTL#bb9bb9a5: %w", err)
tl_update_gen.go#L16309: return fmt.Errorf("can't decode updatePeerHistoryTTL#bb9bb9a5 to nil")
tl_update_gen.go#L16313: return fmt.Errorf("unable to decode updatePeerHistoryTTL#bb9bb9a5: field flags: %w", err)
tl_update_gen.go#L16319: return fmt.Errorf("unable to decode updatePeerHistoryTTL#bb9bb9a5: field peer: %w", err)
tl_update_gen.go#L16326: return fmt.Errorf("unable to decode updatePeerHistoryTTL#bb9bb9a5: field ttl_period: %w", err)
tl_update_gen.go#L16518: return fmt.Errorf("can't encode updateChatParticipant#f3b3781f as nil")
tl_update_gen.go#L16527: return fmt.Errorf("can't encode updateChatParticipant#f3b3781f as nil")
tl_update_gen.go#L16539: return fmt.Errorf("unable to encode updateChatParticipant#f3b3781f: field flags: %w", err)
tl_update_gen.go#L16547: return fmt.Errorf("unable to encode updateChatParticipant#f3b3781f: field prev_participant is nil")
tl_update_gen.go#L16550: return fmt.Errorf("unable to encode updateChatParticipant#f3b3781f: field prev_participant: %w", err)
tl_update_gen.go#L16555: return fmt.Errorf("unable to encode updateChatParticipant#f3b3781f: field new_participant is nil")
tl_update_gen.go#L16558: return fmt.Errorf("unable to encode updateChatParticipant#f3b3781f: field new_participant: %w", err)
tl_update_gen.go#L16563: return fmt.Errorf("unable to encode updateChatParticipant#f3b3781f: field invite: %w", err)
tl_update_gen.go#L16643: return fmt.Errorf("can't decode updateChatParticipant#f3b3781f to nil")
tl_update_gen.go#L16646: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: %w", err)
tl_update_gen.go#L16654: return fmt.Errorf("can't decode updateChatParticipant#f3b3781f to nil")
tl_update_gen.go#L16658: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field flags: %w", err)
tl_update_gen.go#L16664: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field chat_id: %w", err)
tl_update_gen.go#L16671: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field date: %w", err)
tl_update_gen.go#L16678: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field actor_id: %w", err)
tl_update_gen.go#L16685: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field user_id: %w", err)
tl_update_gen.go#L16692: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field prev_participant: %w", err)
tl_update_gen.go#L16699: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field new_participant: %w", err)
tl_update_gen.go#L16705: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field invite: %w", err)
tl_update_gen.go#L16711: return fmt.Errorf("unable to decode updateChatParticipant#f3b3781f: field qts: %w", err)
tl_update_gen.go#L16913: return fmt.Errorf("can't encode updateChannelParticipant#7fecb1ec as nil")
tl_update_gen.go#L16922: return fmt.Errorf("can't encode updateChannelParticipant#7fecb1ec as nil")
tl_update_gen.go#L16934: return fmt.Errorf("unable to encode updateChannelParticipant#7fecb1ec: field flags: %w", err)
tl_update_gen.go#L16942: return fmt.Errorf("unable to encode updateChannelParticipant#7fecb1ec: field prev_participant is nil")
tl_update_gen.go#L16945: return fmt.Errorf("unable to encode updateChannelParticipant#7fecb1ec: field prev_participant: %w", err)
tl_update_gen.go#L16950: return fmt.Errorf("unable to encode updateChannelParticipant#7fecb1ec: field new_participant is nil")
tl_update_gen.go#L16953: return fmt.Errorf("unable to encode updateChannelParticipant#7fecb1ec: field new_participant: %w", err)
tl_update_gen.go#L16958: return fmt.Errorf("unable to encode updateChannelParticipant#7fecb1ec: field invite: %w", err)
tl_update_gen.go#L17038: return fmt.Errorf("can't decode updateChannelParticipant#7fecb1ec to nil")
tl_update_gen.go#L17041: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: %w", err)
tl_update_gen.go#L17049: return fmt.Errorf("can't decode updateChannelParticipant#7fecb1ec to nil")
tl_update_gen.go#L17053: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field flags: %w", err)
tl_update_gen.go#L17059: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field channel_id: %w", err)
tl_update_gen.go#L17066: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field date: %w", err)
tl_update_gen.go#L17073: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field actor_id: %w", err)
tl_update_gen.go#L17080: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field user_id: %w", err)
tl_update_gen.go#L17087: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field prev_participant: %w", err)
tl_update_gen.go#L17094: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field new_participant: %w", err)
tl_update_gen.go#L17100: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field invite: %w", err)
tl_update_gen.go#L17106: return fmt.Errorf("unable to decode updateChannelParticipant#7fecb1ec: field qts: %w", err)
tl_update_gen.go#L17231: return fmt.Errorf("can't encode updateBotStopped#7f9488a as nil")
tl_update_gen.go#L17240: return fmt.Errorf("can't encode updateBotStopped#7f9488a as nil")
tl_update_gen.go#L17272: return fmt.Errorf("can't decode updateBotStopped#7f9488a to nil")
tl_update_gen.go#L17275: return fmt.Errorf("unable to decode updateBotStopped#7f9488a: %w", err)
tl_update_gen.go#L17283: return fmt.Errorf("can't decode updateBotStopped#7f9488a to nil")
tl_update_gen.go#L17288: return fmt.Errorf("unable to decode updateBotStopped#7f9488a: field user_id: %w", err)
tl_update_gen.go#L17295: return fmt.Errorf("unable to decode updateBotStopped#7f9488a: field date: %w", err)
tl_update_gen.go#L17302: return fmt.Errorf("unable to decode updateBotStopped#7f9488a: field stopped: %w", err)
tl_update_gen.go#L17309: return fmt.Errorf("unable to decode updateBotStopped#7f9488a: field qts: %w", err)
tl_update_gen.go#L17462: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17469: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17476: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17483: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17490: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17497: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17504: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17511: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17518: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17525: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17532: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17539: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17546: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17553: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17560: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17567: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17574: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17581: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17588: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17595: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17602: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17609: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17616: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17623: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17630: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17637: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17644: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17651: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17658: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17665: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17672: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17679: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17686: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17693: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17700: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17707: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17714: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17721: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17728: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17735: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17742: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17749: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17756: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17763: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17770: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17777: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17784: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17791: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17798: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17805: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17812: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17819: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17826: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17833: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17840: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17847: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17854: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17861: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17868: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17875: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17882: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17889: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17896: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17903: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17910: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17917: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17924: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17931: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17938: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17945: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17952: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17959: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17966: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17973: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17980: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17987: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L17994: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18001: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18008: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18015: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18022: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18029: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18036: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18043: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18050: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18057: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18064: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18071: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18078: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18085: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18092: return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
tl_update_gen.go#L18096: return nil, fmt.Errorf("unable to decode UpdateClass: %w", bin.NewUnexpectedID(id))
tl_update_gen.go#L18108: return fmt.Errorf("unable to decode UpdateBox to nil")
tl_update_gen.go#L18112: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_update_gen.go#L18121: return fmt.Errorf("unable to encode UpdateClass as nil")
tl_updates_channel_difference_gen.go#L146: return fmt.Errorf("can't encode updates.channelDifferenceEmpty#3e11affb as nil")
tl_updates_channel_difference_gen.go#L155: return fmt.Errorf("can't encode updates.channelDifferenceEmpty#3e11affb as nil")
tl_updates_channel_difference_gen.go#L164: return fmt.Errorf("unable to encode updates.channelDifferenceEmpty#3e11affb: field flags: %w", err)
tl_updates_channel_difference_gen.go#L212: return fmt.Errorf("can't decode updates.channelDifferenceEmpty#3e11affb to nil")
tl_updates_channel_difference_gen.go#L215: return fmt.Errorf("unable to decode updates.channelDifferenceEmpty#3e11affb: %w", err)
tl_updates_channel_difference_gen.go#L223: return fmt.Errorf("can't decode updates.channelDifferenceEmpty#3e11affb to nil")
tl_updates_channel_difference_gen.go#L227: return fmt.Errorf("unable to decode updates.channelDifferenceEmpty#3e11affb: field flags: %w", err)
tl_updates_channel_difference_gen.go#L234: return fmt.Errorf("unable to decode updates.channelDifferenceEmpty#3e11affb: field pts: %w", err)
tl_updates_channel_difference_gen.go#L241: return fmt.Errorf("unable to decode updates.channelDifferenceEmpty#3e11affb: field timeout: %w", err)
tl_updates_channel_difference_gen.go#L410: return fmt.Errorf("can't encode updates.channelDifferenceTooLong#a4bcc6fe as nil")
tl_updates_channel_difference_gen.go#L419: return fmt.Errorf("can't encode updates.channelDifferenceTooLong#a4bcc6fe as nil")
tl_updates_channel_difference_gen.go#L428: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field flags: %w", err)
tl_updates_channel_difference_gen.go#L434: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field dialog is nil")
tl_updates_channel_difference_gen.go#L437: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field dialog: %w", err)
tl_updates_channel_difference_gen.go#L442: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field messages element with index %d is nil", idx)
tl_updates_channel_difference_gen.go#L445: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field messages element with index %d: %w", idx, err)
tl_updates_channel_difference_gen.go#L451: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field chats element with index %d is nil", idx)
tl_updates_channel_difference_gen.go#L454: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field chats element with index %d: %w", idx, err)
tl_updates_channel_difference_gen.go#L460: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field users element with index %d is nil", idx)
tl_updates_channel_difference_gen.go#L463: return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field users element with index %d: %w", idx, err)
tl_updates_channel_difference_gen.go#L538: return fmt.Errorf("can't decode updates.channelDifferenceTooLong#a4bcc6fe to nil")
tl_updates_channel_difference_gen.go#L541: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: %w", err)
tl_updates_channel_difference_gen.go#L549: return fmt.Errorf("can't decode updates.channelDifferenceTooLong#a4bcc6fe to nil")
tl_updates_channel_difference_gen.go#L553: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field flags: %w", err)
tl_updates_channel_difference_gen.go#L560: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field timeout: %w", err)
tl_updates_channel_difference_gen.go#L567: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field dialog: %w", err)
tl_updates_channel_difference_gen.go#L574: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field messages: %w", err)
tl_updates_channel_difference_gen.go#L579: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field messages: %w", err)
tl_updates_channel_difference_gen.go#L587: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field chats: %w", err)
tl_updates_channel_difference_gen.go#L592: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field chats: %w", err)
tl_updates_channel_difference_gen.go#L600: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field users: %w", err)
tl_updates_channel_difference_gen.go#L605: return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field users: %w", err)
tl_updates_channel_difference_gen.go#L785: return fmt.Errorf("can't encode updates.channelDifference#2064674e as nil")
tl_updates_channel_difference_gen.go#L794: return fmt.Errorf("can't encode updates.channelDifference#2064674e as nil")
tl_updates_channel_difference_gen.go#L803: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field flags: %w", err)
tl_updates_channel_difference_gen.go#L812: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field new_messages element with index %d is nil", idx)
tl_updates_channel_difference_gen.go#L815: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field new_messages element with index %d: %w", idx, err)
tl_updates_channel_difference_gen.go#L821: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field other_updates element with index %d is nil", idx)
tl_updates_channel_difference_gen.go#L824: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field other_updates element with index %d: %w", idx, err)
tl_updates_channel_difference_gen.go#L830: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field chats element with index %d is nil", idx)
tl_updates_channel_difference_gen.go#L833: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field chats element with index %d: %w", idx, err)
tl_updates_channel_difference_gen.go#L839: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field users element with index %d is nil", idx)
tl_updates_channel_difference_gen.go#L842: return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field users element with index %d: %w", idx, err)
tl_updates_channel_difference_gen.go#L927: return fmt.Errorf("can't decode updates.channelDifference#2064674e to nil")
tl_updates_channel_difference_gen.go#L930: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: %w", err)
tl_updates_channel_difference_gen.go#L938: return fmt.Errorf("can't decode updates.channelDifference#2064674e to nil")
tl_updates_channel_difference_gen.go#L942: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field flags: %w", err)
tl_updates_channel_difference_gen.go#L949: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field pts: %w", err)
tl_updates_channel_difference_gen.go#L956: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field timeout: %w", err)
tl_updates_channel_difference_gen.go#L963: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field new_messages: %w", err)
tl_updates_channel_difference_gen.go#L968: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field new_messages: %w", err)
tl_updates_channel_difference_gen.go#L976: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field other_updates: %w", err)
tl_updates_channel_difference_gen.go#L981: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field other_updates: %w", err)
tl_updates_channel_difference_gen.go#L989: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field chats: %w", err)
tl_updates_channel_difference_gen.go#L994: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field chats: %w", err)
tl_updates_channel_difference_gen.go#L1002: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field users: %w", err)
tl_updates_channel_difference_gen.go#L1007: return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field users: %w", err)
tl_updates_channel_difference_gen.go#L1134: return nil, fmt.Errorf("unable to decode UpdatesChannelDifferenceClass: %w", err)
tl_updates_channel_difference_gen.go#L1141: return nil, fmt.Errorf("unable to decode UpdatesChannelDifferenceClass: %w", err)
tl_updates_channel_difference_gen.go#L1148: return nil, fmt.Errorf("unable to decode UpdatesChannelDifferenceClass: %w", err)
tl_updates_channel_difference_gen.go#L1152: return nil, fmt.Errorf("unable to decode UpdatesChannelDifferenceClass: %w", bin.NewUnexpectedID(id))
tl_updates_channel_difference_gen.go#L1164: return fmt.Errorf("unable to decode UpdatesChannelDifferenceBox to nil")
tl_updates_channel_difference_gen.go#L1168: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_updates_channel_difference_gen.go#L1177: return fmt.Errorf("unable to encode UpdatesChannelDifferenceClass as nil")
tl_updates_difference_gen.go#L116: return fmt.Errorf("can't encode updates.differenceEmpty#5d75a138 as nil")
tl_updates_difference_gen.go#L125: return fmt.Errorf("can't encode updates.differenceEmpty#5d75a138 as nil")
tl_updates_difference_gen.go#L145: return fmt.Errorf("can't decode updates.differenceEmpty#5d75a138 to nil")
tl_updates_difference_gen.go#L148: return fmt.Errorf("unable to decode updates.differenceEmpty#5d75a138: %w", err)
tl_updates_difference_gen.go#L156: return fmt.Errorf("can't decode updates.differenceEmpty#5d75a138 to nil")
tl_updates_difference_gen.go#L161: return fmt.Errorf("unable to decode updates.differenceEmpty#5d75a138: field date: %w", err)
tl_updates_difference_gen.go#L168: return fmt.Errorf("unable to decode updates.differenceEmpty#5d75a138: field seq: %w", err)
tl_updates_difference_gen.go#L316: return fmt.Errorf("can't encode updates.difference#f49ca0 as nil")
tl_updates_difference_gen.go#L325: return fmt.Errorf("can't encode updates.difference#f49ca0 as nil")
tl_updates_difference_gen.go#L330: return fmt.Errorf("unable to encode updates.difference#f49ca0: field new_messages element with index %d is nil", idx)
tl_updates_difference_gen.go#L333: return fmt.Errorf("unable to encode updates.difference#f49ca0: field new_messages element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L339: return fmt.Errorf("unable to encode updates.difference#f49ca0: field new_encrypted_messages element with index %d is nil", idx)
tl_updates_difference_gen.go#L342: return fmt.Errorf("unable to encode updates.difference#f49ca0: field new_encrypted_messages element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L348: return fmt.Errorf("unable to encode updates.difference#f49ca0: field other_updates element with index %d is nil", idx)
tl_updates_difference_gen.go#L351: return fmt.Errorf("unable to encode updates.difference#f49ca0: field other_updates element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L357: return fmt.Errorf("unable to encode updates.difference#f49ca0: field chats element with index %d is nil", idx)
tl_updates_difference_gen.go#L360: return fmt.Errorf("unable to encode updates.difference#f49ca0: field chats element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L366: return fmt.Errorf("unable to encode updates.difference#f49ca0: field users element with index %d is nil", idx)
tl_updates_difference_gen.go#L369: return fmt.Errorf("unable to encode updates.difference#f49ca0: field users element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L373: return fmt.Errorf("unable to encode updates.difference#f49ca0: field state: %w", err)
tl_updates_difference_gen.go#L436: return fmt.Errorf("can't decode updates.difference#f49ca0 to nil")
tl_updates_difference_gen.go#L439: return fmt.Errorf("unable to decode updates.difference#f49ca0: %w", err)
tl_updates_difference_gen.go#L447: return fmt.Errorf("can't decode updates.difference#f49ca0 to nil")
tl_updates_difference_gen.go#L452: return fmt.Errorf("unable to decode updates.difference#f49ca0: field new_messages: %w", err)
tl_updates_difference_gen.go#L457: return fmt.Errorf("unable to decode updates.difference#f49ca0: field new_messages: %w", err)
tl_updates_difference_gen.go#L465: return fmt.Errorf("unable to decode updates.difference#f49ca0: field new_encrypted_messages: %w", err)
tl_updates_difference_gen.go#L470: return fmt.Errorf("unable to decode updates.difference#f49ca0: field new_encrypted_messages: %w", err)
tl_updates_difference_gen.go#L478: return fmt.Errorf("unable to decode updates.difference#f49ca0: field other_updates: %w", err)
tl_updates_difference_gen.go#L483: return fmt.Errorf("unable to decode updates.difference#f49ca0: field other_updates: %w", err)
tl_updates_difference_gen.go#L491: return fmt.Errorf("unable to decode updates.difference#f49ca0: field chats: %w", err)
tl_updates_difference_gen.go#L496: return fmt.Errorf("unable to decode updates.difference#f49ca0: field chats: %w", err)
tl_updates_difference_gen.go#L504: return fmt.Errorf("unable to decode updates.difference#f49ca0: field users: %w", err)
tl_updates_difference_gen.go#L509: return fmt.Errorf("unable to decode updates.difference#f49ca0: field users: %w", err)
tl_updates_difference_gen.go#L516: return fmt.Errorf("unable to decode updates.difference#f49ca0: field state: %w", err)
tl_updates_difference_gen.go#L666: return fmt.Errorf("can't encode updates.differenceSlice#a8fb1981 as nil")
tl_updates_difference_gen.go#L675: return fmt.Errorf("can't encode updates.differenceSlice#a8fb1981 as nil")
tl_updates_difference_gen.go#L680: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field new_messages element with index %d is nil", idx)
tl_updates_difference_gen.go#L683: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field new_messages element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L689: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field new_encrypted_messages element with index %d is nil", idx)
tl_updates_difference_gen.go#L692: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field new_encrypted_messages element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L698: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field other_updates element with index %d is nil", idx)
tl_updates_difference_gen.go#L701: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field other_updates element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L707: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field chats element with index %d is nil", idx)
tl_updates_difference_gen.go#L710: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field chats element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L716: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field users element with index %d is nil", idx)
tl_updates_difference_gen.go#L719: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field users element with index %d: %w", idx, err)
tl_updates_difference_gen.go#L723: return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field intermediate_state: %w", err)
tl_updates_difference_gen.go#L786: return fmt.Errorf("can't decode updates.differenceSlice#a8fb1981 to nil")
tl_updates_difference_gen.go#L789: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: %w", err)
tl_updates_difference_gen.go#L797: return fmt.Errorf("can't decode updates.differenceSlice#a8fb1981 to nil")
tl_updates_difference_gen.go#L802: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field new_messages: %w", err)
tl_updates_difference_gen.go#L807: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field new_messages: %w", err)
tl_updates_difference_gen.go#L815: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field new_encrypted_messages: %w", err)
tl_updates_difference_gen.go#L820: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field new_encrypted_messages: %w", err)
tl_updates_difference_gen.go#L828: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field other_updates: %w", err)
tl_updates_difference_gen.go#L833: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field other_updates: %w", err)
tl_updates_difference_gen.go#L841: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field chats: %w", err)
tl_updates_difference_gen.go#L846: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field chats: %w", err)
tl_updates_difference_gen.go#L854: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field users: %w", err)
tl_updates_difference_gen.go#L859: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field users: %w", err)
tl_updates_difference_gen.go#L866: return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field intermediate_state: %w", err)
tl_updates_difference_gen.go#L961: return fmt.Errorf("can't encode updates.differenceTooLong#4afe8f6d as nil")
tl_updates_difference_gen.go#L970: return fmt.Errorf("can't encode updates.differenceTooLong#4afe8f6d as nil")
tl_updates_difference_gen.go#L984: return fmt.Errorf("can't decode updates.differenceTooLong#4afe8f6d to nil")
tl_updates_difference_gen.go#L987: return fmt.Errorf("unable to decode updates.differenceTooLong#4afe8f6d: %w", err)
tl_updates_difference_gen.go#L995: return fmt.Errorf("can't decode updates.differenceTooLong#4afe8f6d to nil")
tl_updates_difference_gen.go#L1000: return fmt.Errorf("unable to decode updates.differenceTooLong#4afe8f6d: field pts: %w", err)
tl_updates_difference_gen.go#L1066: return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", err)
tl_updates_difference_gen.go#L1073: return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", err)
tl_updates_difference_gen.go#L1080: return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", err)
tl_updates_difference_gen.go#L1087: return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", err)
tl_updates_difference_gen.go#L1091: return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", bin.NewUnexpectedID(id))
tl_updates_difference_gen.go#L1103: return fmt.Errorf("unable to decode UpdatesDifferenceBox to nil")
tl_updates_difference_gen.go#L1107: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_updates_difference_gen.go#L1116: return fmt.Errorf("unable to encode UpdatesDifferenceClass as nil")
tl_updates_gen.go#L91: return fmt.Errorf("can't encode updatesTooLong#e317af7e as nil")
tl_updates_gen.go#L100: return fmt.Errorf("can't encode updatesTooLong#e317af7e as nil")
tl_updates_gen.go#L108: return fmt.Errorf("can't decode updatesTooLong#e317af7e to nil")
tl_updates_gen.go#L111: return fmt.Errorf("unable to decode updatesTooLong#e317af7e: %w", err)
tl_updates_gen.go#L119: return fmt.Errorf("can't decode updatesTooLong#e317af7e to nil")
tl_updates_gen.go#L421: return fmt.Errorf("can't encode updateShortMessage#faeff833 as nil")
tl_updates_gen.go#L430: return fmt.Errorf("can't encode updateShortMessage#faeff833 as nil")
tl_updates_gen.go#L460: return fmt.Errorf("unable to encode updateShortMessage#faeff833: field flags: %w", err)
tl_updates_gen.go#L470: return fmt.Errorf("unable to encode updateShortMessage#faeff833: field fwd_from: %w", err)
tl_updates_gen.go#L478: return fmt.Errorf("unable to encode updateShortMessage#faeff833: field reply_to: %w", err)
tl_updates_gen.go#L485: return fmt.Errorf("unable to encode updateShortMessage#faeff833: field entities element with index %d is nil", idx)
tl_updates_gen.go#L488: return fmt.Errorf("unable to encode updateShortMessage#faeff833: field entities element with index %d: %w", idx, err)
tl_updates_gen.go#L678: return fmt.Errorf("can't decode updateShortMessage#faeff833 to nil")
tl_updates_gen.go#L681: return fmt.Errorf("unable to decode updateShortMessage#faeff833: %w", err)
tl_updates_gen.go#L689: return fmt.Errorf("can't decode updateShortMessage#faeff833 to nil")
tl_updates_gen.go#L693: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field flags: %w", err)
tl_updates_gen.go#L703: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field id: %w", err)
tl_updates_gen.go#L710: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field user_id: %w", err)
tl_updates_gen.go#L717: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field message: %w", err)
tl_updates_gen.go#L724: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field pts: %w", err)
tl_updates_gen.go#L731: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field pts_count: %w", err)
tl_updates_gen.go#L738: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field date: %w", err)
tl_updates_gen.go#L744: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field fwd_from: %w", err)
tl_updates_gen.go#L750: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field via_bot_id: %w", err)
tl_updates_gen.go#L756: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field reply_to: %w", err)
tl_updates_gen.go#L762: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field entities: %w", err)
tl_updates_gen.go#L767: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field entities: %w", err)
tl_updates_gen.go#L775: return fmt.Errorf("unable to decode updateShortMessage#faeff833: field ttl_period: %w", err)
tl_updates_gen.go#L1087: return fmt.Errorf("can't encode updateShortChatMessage#1157b858 as nil")
tl_updates_gen.go#L1096: return fmt.Errorf("can't encode updateShortChatMessage#1157b858 as nil")
tl_updates_gen.go#L1126: return fmt.Errorf("unable to encode updateShortChatMessage#1157b858: field flags: %w", err)
tl_updates_gen.go#L1137: return fmt.Errorf("unable to encode updateShortChatMessage#1157b858: field fwd_from: %w", err)
tl_updates_gen.go#L1145: return fmt.Errorf("unable to encode updateShortChatMessage#1157b858: field reply_to: %w", err)
tl_updates_gen.go#L1152: return fmt.Errorf("unable to encode updateShortChatMessage#1157b858: field entities element with index %d is nil", idx)
tl_updates_gen.go#L1155: return fmt.Errorf("unable to encode updateShortChatMessage#1157b858: field entities element with index %d: %w", idx, err)
tl_updates_gen.go#L1350: return fmt.Errorf("can't decode updateShortChatMessage#1157b858 to nil")
tl_updates_gen.go#L1353: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: %w", err)
tl_updates_gen.go#L1361: return fmt.Errorf("can't decode updateShortChatMessage#1157b858 to nil")
tl_updates_gen.go#L1365: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field flags: %w", err)
tl_updates_gen.go#L1375: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field id: %w", err)
tl_updates_gen.go#L1382: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field from_id: %w", err)
tl_updates_gen.go#L1389: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field chat_id: %w", err)
tl_updates_gen.go#L1396: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field message: %w", err)
tl_updates_gen.go#L1403: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field pts: %w", err)
tl_updates_gen.go#L1410: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field pts_count: %w", err)
tl_updates_gen.go#L1417: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field date: %w", err)
tl_updates_gen.go#L1423: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field fwd_from: %w", err)
tl_updates_gen.go#L1429: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field via_bot_id: %w", err)
tl_updates_gen.go#L1435: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field reply_to: %w", err)
tl_updates_gen.go#L1441: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field entities: %w", err)
tl_updates_gen.go#L1446: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field entities: %w", err)
tl_updates_gen.go#L1454: return fmt.Errorf("unable to decode updateShortChatMessage#1157b858: field ttl_period: %w", err)
tl_updates_gen.go#L1558: return fmt.Errorf("can't encode updateShort#78d4dec1 as nil")
tl_updates_gen.go#L1567: return fmt.Errorf("can't encode updateShort#78d4dec1 as nil")
tl_updates_gen.go#L1570: return fmt.Errorf("unable to encode updateShort#78d4dec1: field update is nil")
tl_updates_gen.go#L1573: return fmt.Errorf("unable to encode updateShort#78d4dec1: field update: %w", err)
tl_updates_gen.go#L1592: return fmt.Errorf("can't decode updateShort#78d4dec1 to nil")
tl_updates_gen.go#L1595: return fmt.Errorf("unable to decode updateShort#78d4dec1: %w", err)
tl_updates_gen.go#L1603: return fmt.Errorf("can't decode updateShort#78d4dec1 to nil")
tl_updates_gen.go#L1608: return fmt.Errorf("unable to decode updateShort#78d4dec1: field update: %w", err)
tl_updates_gen.go#L1615: return fmt.Errorf("unable to decode updateShort#78d4dec1: field date: %w", err)
tl_updates_gen.go#L1763: return fmt.Errorf("can't encode updatesCombined#725b04c3 as nil")
tl_updates_gen.go#L1772: return fmt.Errorf("can't encode updatesCombined#725b04c3 as nil")
tl_updates_gen.go#L1777: return fmt.Errorf("unable to encode updatesCombined#725b04c3: field updates element with index %d is nil", idx)
tl_updates_gen.go#L1780: return fmt.Errorf("unable to encode updatesCombined#725b04c3: field updates element with index %d: %w", idx, err)
tl_updates_gen.go#L1786: return fmt.Errorf("unable to encode updatesCombined#725b04c3: field users element with index %d is nil", idx)
tl_updates_gen.go#L1789: return fmt.Errorf("unable to encode updatesCombined#725b04c3: field users element with index %d: %w", idx, err)
tl_updates_gen.go#L1795: return fmt.Errorf("unable to encode updatesCombined#725b04c3: field chats element with index %d is nil", idx)
tl_updates_gen.go#L1798: return fmt.Errorf("unable to encode updatesCombined#725b04c3: field chats element with index %d: %w", idx, err)
tl_updates_gen.go#L1855: return fmt.Errorf("can't decode updatesCombined#725b04c3 to nil")
tl_updates_gen.go#L1858: return fmt.Errorf("unable to decode updatesCombined#725b04c3: %w", err)
tl_updates_gen.go#L1866: return fmt.Errorf("can't decode updatesCombined#725b04c3 to nil")
tl_updates_gen.go#L1871: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field updates: %w", err)
tl_updates_gen.go#L1876: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field updates: %w", err)
tl_updates_gen.go#L1884: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field users: %w", err)
tl_updates_gen.go#L1889: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field users: %w", err)
tl_updates_gen.go#L1897: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field chats: %w", err)
tl_updates_gen.go#L1902: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field chats: %w", err)
tl_updates_gen.go#L1910: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field date: %w", err)
tl_updates_gen.go#L1917: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field seq_start: %w", err)
tl_updates_gen.go#L1924: return fmt.Errorf("unable to decode updatesCombined#725b04c3: field seq: %w", err)
tl_updates_gen.go#L2060: return fmt.Errorf("can't encode updates#74ae4240 as nil")
tl_updates_gen.go#L2069: return fmt.Errorf("can't encode updates#74ae4240 as nil")
tl_updates_gen.go#L2074: return fmt.Errorf("unable to encode updates#74ae4240: field updates element with index %d is nil", idx)
tl_updates_gen.go#L2077: return fmt.Errorf("unable to encode updates#74ae4240: field updates element with index %d: %w", idx, err)
tl_updates_gen.go#L2083: return fmt.Errorf("unable to encode updates#74ae4240: field users element with index %d is nil", idx)
tl_updates_gen.go#L2086: return fmt.Errorf("unable to encode updates#74ae4240: field users element with index %d: %w", idx, err)
tl_updates_gen.go#L2092: return fmt.Errorf("unable to encode updates#74ae4240: field chats element with index %d is nil", idx)
tl_updates_gen.go#L2095: return fmt.Errorf("unable to encode updates#74ae4240: field chats element with index %d: %w", idx, err)
tl_updates_gen.go#L2146: return fmt.Errorf("can't decode updates#74ae4240 to nil")
tl_updates_gen.go#L2149: return fmt.Errorf("unable to decode updates#74ae4240: %w", err)
tl_updates_gen.go#L2157: return fmt.Errorf("can't decode updates#74ae4240 to nil")
tl_updates_gen.go#L2162: return fmt.Errorf("unable to decode updates#74ae4240: field updates: %w", err)
tl_updates_gen.go#L2167: return fmt.Errorf("unable to decode updates#74ae4240: field updates: %w", err)
tl_updates_gen.go#L2175: return fmt.Errorf("unable to decode updates#74ae4240: field users: %w", err)
tl_updates_gen.go#L2180: return fmt.Errorf("unable to decode updates#74ae4240: field users: %w", err)
tl_updates_gen.go#L2188: return fmt.Errorf("unable to decode updates#74ae4240: field chats: %w", err)
tl_updates_gen.go#L2193: return fmt.Errorf("unable to decode updates#74ae4240: field chats: %w", err)
tl_updates_gen.go#L2201: return fmt.Errorf("unable to decode updates#74ae4240: field date: %w", err)
tl_updates_gen.go#L2208: return fmt.Errorf("unable to decode updates#74ae4240: field seq: %w", err)
tl_updates_gen.go#L2418: return fmt.Errorf("can't encode updateShortSentMessage#9015e101 as nil")
tl_updates_gen.go#L2427: return fmt.Errorf("can't encode updateShortSentMessage#9015e101 as nil")
tl_updates_gen.go#L2442: return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field flags: %w", err)
tl_updates_gen.go#L2450: return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field media is nil")
tl_updates_gen.go#L2453: return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field media: %w", err)
tl_updates_gen.go#L2460: return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field entities element with index %d is nil", idx)
tl_updates_gen.go#L2463: return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field entities element with index %d: %w", idx, err)
tl_updates_gen.go#L2565: return fmt.Errorf("can't decode updateShortSentMessage#9015e101 to nil")
tl_updates_gen.go#L2568: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: %w", err)
tl_updates_gen.go#L2576: return fmt.Errorf("can't decode updateShortSentMessage#9015e101 to nil")
tl_updates_gen.go#L2580: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field flags: %w", err)
tl_updates_gen.go#L2587: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field id: %w", err)
tl_updates_gen.go#L2594: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field pts: %w", err)
tl_updates_gen.go#L2601: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field pts_count: %w", err)
tl_updates_gen.go#L2608: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field date: %w", err)
tl_updates_gen.go#L2615: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field media: %w", err)
tl_updates_gen.go#L2622: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field entities: %w", err)
tl_updates_gen.go#L2627: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field entities: %w", err)
tl_updates_gen.go#L2635: return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field ttl_period: %w", err)
tl_updates_gen.go#L2704: return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
tl_updates_gen.go#L2711: return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
tl_updates_gen.go#L2718: return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
tl_updates_gen.go#L2725: return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
tl_updates_gen.go#L2732: return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
tl_updates_gen.go#L2739: return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
tl_updates_gen.go#L2746: return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
tl_updates_gen.go#L2750: return nil, fmt.Errorf("unable to decode UpdatesClass: %w", bin.NewUnexpectedID(id))
tl_updates_gen.go#L2762: return fmt.Errorf("unable to decode UpdatesBox to nil")
tl_updates_gen.go#L2766: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_updates_gen.go#L2775: return fmt.Errorf("unable to encode UpdatesClass as nil")
tl_updates_get_channel_difference_gen.go#L163: return fmt.Errorf("can't encode updates.getChannelDifference#3173d78 as nil")
tl_updates_get_channel_difference_gen.go#L172: return fmt.Errorf("can't encode updates.getChannelDifference#3173d78 as nil")
tl_updates_get_channel_difference_gen.go#L178: return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field flags: %w", err)
tl_updates_get_channel_difference_gen.go#L181: return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field channel is nil")
tl_updates_get_channel_difference_gen.go#L184: return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field channel: %w", err)
tl_updates_get_channel_difference_gen.go#L187: return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field filter is nil")
tl_updates_get_channel_difference_gen.go#L190: return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field filter: %w", err)
tl_updates_get_channel_difference_gen.go#L246: return fmt.Errorf("can't decode updates.getChannelDifference#3173d78 to nil")
tl_updates_get_channel_difference_gen.go#L249: return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: %w", err)
tl_updates_get_channel_difference_gen.go#L257: return fmt.Errorf("can't decode updates.getChannelDifference#3173d78 to nil")
tl_updates_get_channel_difference_gen.go#L261: return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field flags: %w", err)
tl_updates_get_channel_difference_gen.go#L268: return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field channel: %w", err)
tl_updates_get_channel_difference_gen.go#L275: return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field filter: %w", err)
tl_updates_get_channel_difference_gen.go#L282: return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field pts: %w", err)
tl_updates_get_channel_difference_gen.go#L289: return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field limit: %w", err)
tl_updates_get_difference_gen.go#L170: return fmt.Errorf("can't encode updates.getDifference#25939651 as nil")
tl_updates_get_difference_gen.go#L179: return fmt.Errorf("can't encode updates.getDifference#25939651 as nil")
tl_updates_get_difference_gen.go#L185: return fmt.Errorf("unable to encode updates.getDifference#25939651: field flags: %w", err)
tl_updates_get_difference_gen.go#L229: return fmt.Errorf("can't decode updates.getDifference#25939651 to nil")
tl_updates_get_difference_gen.go#L232: return fmt.Errorf("unable to decode updates.getDifference#25939651: %w", err)
tl_updates_get_difference_gen.go#L240: return fmt.Errorf("can't decode updates.getDifference#25939651 to nil")
tl_updates_get_difference_gen.go#L244: return fmt.Errorf("unable to decode updates.getDifference#25939651: field flags: %w", err)
tl_updates_get_difference_gen.go#L250: return fmt.Errorf("unable to decode updates.getDifference#25939651: field pts: %w", err)
tl_updates_get_difference_gen.go#L257: return fmt.Errorf("unable to decode updates.getDifference#25939651: field pts_total_limit: %w", err)
tl_updates_get_difference_gen.go#L264: return fmt.Errorf("unable to decode updates.getDifference#25939651: field date: %w", err)
tl_updates_get_difference_gen.go#L271: return fmt.Errorf("unable to decode updates.getDifference#25939651: field qts: %w", err)
tl_updates_get_state_gen.go#L88: return fmt.Errorf("can't encode updates.getState#edd4882a as nil")
tl_updates_get_state_gen.go#L97: return fmt.Errorf("can't encode updates.getState#edd4882a as nil")
tl_updates_get_state_gen.go#L105: return fmt.Errorf("can't decode updates.getState#edd4882a to nil")
tl_updates_get_state_gen.go#L108: return fmt.Errorf("unable to decode updates.getState#edd4882a: %w", err)
tl_updates_get_state_gen.go#L116: return fmt.Errorf("can't decode updates.getState#edd4882a to nil")
tl_updates_state_gen.go#L154: return fmt.Errorf("can't encode updates.state#a56c2a3e as nil")
tl_updates_state_gen.go#L163: return fmt.Errorf("can't encode updates.state#a56c2a3e as nil")
tl_updates_state_gen.go#L201: return fmt.Errorf("can't decode updates.state#a56c2a3e to nil")
tl_updates_state_gen.go#L204: return fmt.Errorf("unable to decode updates.state#a56c2a3e: %w", err)
tl_updates_state_gen.go#L212: return fmt.Errorf("can't decode updates.state#a56c2a3e to nil")
tl_updates_state_gen.go#L217: return fmt.Errorf("unable to decode updates.state#a56c2a3e: field pts: %w", err)
tl_updates_state_gen.go#L224: return fmt.Errorf("unable to decode updates.state#a56c2a3e: field qts: %w", err)
tl_updates_state_gen.go#L231: return fmt.Errorf("unable to decode updates.state#a56c2a3e: field date: %w", err)
tl_updates_state_gen.go#L238: return fmt.Errorf("unable to decode updates.state#a56c2a3e: field seq: %w", err)
tl_updates_state_gen.go#L245: return fmt.Errorf("unable to decode updates.state#a56c2a3e: field unread_count: %w", err)
tl_upload_cdn_file_gen.go#L112: return fmt.Errorf("can't encode upload.cdnFileReuploadNeeded#eea8e46e as nil")
tl_upload_cdn_file_gen.go#L121: return fmt.Errorf("can't encode upload.cdnFileReuploadNeeded#eea8e46e as nil")
tl_upload_cdn_file_gen.go#L135: return fmt.Errorf("can't decode upload.cdnFileReuploadNeeded#eea8e46e to nil")
tl_upload_cdn_file_gen.go#L138: return fmt.Errorf("unable to decode upload.cdnFileReuploadNeeded#eea8e46e: %w", err)
tl_upload_cdn_file_gen.go#L146: return fmt.Errorf("can't decode upload.cdnFileReuploadNeeded#eea8e46e to nil")
tl_upload_cdn_file_gen.go#L151: return fmt.Errorf("unable to decode upload.cdnFileReuploadNeeded#eea8e46e: field request_token: %w", err)
tl_upload_cdn_file_gen.go#L247: return fmt.Errorf("can't encode upload.cdnFile#a99fca4f as nil")
tl_upload_cdn_file_gen.go#L256: return fmt.Errorf("can't encode upload.cdnFile#a99fca4f as nil")
tl_upload_cdn_file_gen.go#L270: return fmt.Errorf("can't decode upload.cdnFile#a99fca4f to nil")
tl_upload_cdn_file_gen.go#L273: return fmt.Errorf("unable to decode upload.cdnFile#a99fca4f: %w", err)
tl_upload_cdn_file_gen.go#L281: return fmt.Errorf("can't decode upload.cdnFile#a99fca4f to nil")
tl_upload_cdn_file_gen.go#L286: return fmt.Errorf("unable to decode upload.cdnFile#a99fca4f: field bytes: %w", err)
tl_upload_cdn_file_gen.go#L350: return nil, fmt.Errorf("unable to decode UploadCDNFileClass: %w", err)
tl_upload_cdn_file_gen.go#L357: return nil, fmt.Errorf("unable to decode UploadCDNFileClass: %w", err)
tl_upload_cdn_file_gen.go#L361: return nil, fmt.Errorf("unable to decode UploadCDNFileClass: %w", bin.NewUnexpectedID(id))
tl_upload_cdn_file_gen.go#L373: return fmt.Errorf("unable to decode UploadCDNFileBox to nil")
tl_upload_cdn_file_gen.go#L377: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_upload_cdn_file_gen.go#L386: return fmt.Errorf("unable to encode UploadCDNFileClass as nil")
tl_upload_file_gen.go#L127: return fmt.Errorf("can't encode upload.file#96a18d5 as nil")
tl_upload_file_gen.go#L136: return fmt.Errorf("can't encode upload.file#96a18d5 as nil")
tl_upload_file_gen.go#L139: return fmt.Errorf("unable to encode upload.file#96a18d5: field type is nil")
tl_upload_file_gen.go#L142: return fmt.Errorf("unable to encode upload.file#96a18d5: field type: %w", err)
tl_upload_file_gen.go#L167: return fmt.Errorf("can't decode upload.file#96a18d5 to nil")
tl_upload_file_gen.go#L170: return fmt.Errorf("unable to decode upload.file#96a18d5: %w", err)
tl_upload_file_gen.go#L178: return fmt.Errorf("can't decode upload.file#96a18d5 to nil")
tl_upload_file_gen.go#L183: return fmt.Errorf("unable to decode upload.file#96a18d5: field type: %w", err)
tl_upload_file_gen.go#L190: return fmt.Errorf("unable to decode upload.file#96a18d5: field mtime: %w", err)
tl_upload_file_gen.go#L197: return fmt.Errorf("unable to decode upload.file#96a18d5: field bytes: %w", err)
tl_upload_file_gen.go#L352: return fmt.Errorf("can't encode upload.fileCdnRedirect#f18cda44 as nil")
tl_upload_file_gen.go#L361: return fmt.Errorf("can't encode upload.fileCdnRedirect#f18cda44 as nil")
tl_upload_file_gen.go#L370: return fmt.Errorf("unable to encode upload.fileCdnRedirect#f18cda44: field file_hashes element with index %d: %w", idx, err)
tl_upload_file_gen.go#L404: return fmt.Errorf("can't decode upload.fileCdnRedirect#f18cda44 to nil")
tl_upload_file_gen.go#L407: return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: %w", err)
tl_upload_file_gen.go#L415: return fmt.Errorf("can't decode upload.fileCdnRedirect#f18cda44 to nil")
tl_upload_file_gen.go#L420: return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field dc_id: %w", err)
tl_upload_file_gen.go#L427: return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field file_token: %w", err)
tl_upload_file_gen.go#L434: return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field encryption_key: %w", err)
tl_upload_file_gen.go#L441: return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field encryption_iv: %w", err)
tl_upload_file_gen.go#L448: return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field file_hashes: %w", err)
tl_upload_file_gen.go#L453: return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field file_hashes: %w", err)
tl_upload_file_gen.go#L518: return nil, fmt.Errorf("unable to decode UploadFileClass: %w", err)
tl_upload_file_gen.go#L525: return nil, fmt.Errorf("unable to decode UploadFileClass: %w", err)
tl_upload_file_gen.go#L529: return nil, fmt.Errorf("unable to decode UploadFileClass: %w", bin.NewUnexpectedID(id))
tl_upload_file_gen.go#L541: return fmt.Errorf("unable to decode UploadFileBox to nil")
tl_upload_file_gen.go#L545: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_upload_file_gen.go#L554: return fmt.Errorf("unable to encode UploadFileClass as nil")
tl_upload_get_cdn_file_gen.go#L130: return fmt.Errorf("can't encode upload.getCdnFile#2000bcc3 as nil")
tl_upload_get_cdn_file_gen.go#L139: return fmt.Errorf("can't encode upload.getCdnFile#2000bcc3 as nil")
tl_upload_get_cdn_file_gen.go#L165: return fmt.Errorf("can't decode upload.getCdnFile#2000bcc3 to nil")
tl_upload_get_cdn_file_gen.go#L168: return fmt.Errorf("unable to decode upload.getCdnFile#2000bcc3: %w", err)
tl_upload_get_cdn_file_gen.go#L176: return fmt.Errorf("can't decode upload.getCdnFile#2000bcc3 to nil")
tl_upload_get_cdn_file_gen.go#L181: return fmt.Errorf("unable to decode upload.getCdnFile#2000bcc3: field file_token: %w", err)
tl_upload_get_cdn_file_gen.go#L188: return fmt.Errorf("unable to decode upload.getCdnFile#2000bcc3: field offset: %w", err)
tl_upload_get_cdn_file_gen.go#L195: return fmt.Errorf("unable to decode upload.getCdnFile#2000bcc3: field limit: %w", err)
tl_upload_get_cdn_file_hashes_gen.go#L119: return fmt.Errorf("can't encode upload.getCdnFileHashes#4da54231 as nil")
tl_upload_get_cdn_file_hashes_gen.go#L128: return fmt.Errorf("can't encode upload.getCdnFileHashes#4da54231 as nil")
tl_upload_get_cdn_file_hashes_gen.go#L148: return fmt.Errorf("can't decode upload.getCdnFileHashes#4da54231 to nil")
tl_upload_get_cdn_file_hashes_gen.go#L151: return fmt.Errorf("unable to decode upload.getCdnFileHashes#4da54231: %w", err)
tl_upload_get_cdn_file_hashes_gen.go#L159: return fmt.Errorf("can't decode upload.getCdnFileHashes#4da54231 to nil")
tl_upload_get_cdn_file_hashes_gen.go#L164: return fmt.Errorf("unable to decode upload.getCdnFileHashes#4da54231: field file_token: %w", err)
tl_upload_get_cdn_file_hashes_gen.go#L171: return fmt.Errorf("unable to decode upload.getCdnFileHashes#4da54231: field offset: %w", err)
tl_upload_get_file_gen.go#L163: return fmt.Errorf("can't encode upload.getFile#b15a9afc as nil")
tl_upload_get_file_gen.go#L172: return fmt.Errorf("can't encode upload.getFile#b15a9afc as nil")
tl_upload_get_file_gen.go#L181: return fmt.Errorf("unable to encode upload.getFile#b15a9afc: field flags: %w", err)
tl_upload_get_file_gen.go#L184: return fmt.Errorf("unable to encode upload.getFile#b15a9afc: field location is nil")
tl_upload_get_file_gen.go#L187: return fmt.Errorf("unable to encode upload.getFile#b15a9afc: field location: %w", err)
tl_upload_get_file_gen.go#L244: return fmt.Errorf("can't decode upload.getFile#b15a9afc to nil")
tl_upload_get_file_gen.go#L247: return fmt.Errorf("unable to decode upload.getFile#b15a9afc: %w", err)
tl_upload_get_file_gen.go#L255: return fmt.Errorf("can't decode upload.getFile#b15a9afc to nil")
tl_upload_get_file_gen.go#L259: return fmt.Errorf("unable to decode upload.getFile#b15a9afc: field flags: %w", err)
tl_upload_get_file_gen.go#L267: return fmt.Errorf("unable to decode upload.getFile#b15a9afc: field location: %w", err)
tl_upload_get_file_gen.go#L274: return fmt.Errorf("unable to decode upload.getFile#b15a9afc: field offset: %w", err)
tl_upload_get_file_gen.go#L281: return fmt.Errorf("unable to decode upload.getFile#b15a9afc: field limit: %w", err)
tl_upload_get_file_hashes_gen.go#L116: return fmt.Errorf("can't encode upload.getFileHashes#c7025931 as nil")
tl_upload_get_file_hashes_gen.go#L125: return fmt.Errorf("can't encode upload.getFileHashes#c7025931 as nil")
tl_upload_get_file_hashes_gen.go#L128: return fmt.Errorf("unable to encode upload.getFileHashes#c7025931: field location is nil")
tl_upload_get_file_hashes_gen.go#L131: return fmt.Errorf("unable to encode upload.getFileHashes#c7025931: field location: %w", err)
tl_upload_get_file_hashes_gen.go#L150: return fmt.Errorf("can't decode upload.getFileHashes#c7025931 to nil")
tl_upload_get_file_hashes_gen.go#L153: return fmt.Errorf("unable to decode upload.getFileHashes#c7025931: %w", err)
tl_upload_get_file_hashes_gen.go#L161: return fmt.Errorf("can't decode upload.getFileHashes#c7025931 to nil")
tl_upload_get_file_hashes_gen.go#L166: return fmt.Errorf("unable to decode upload.getFileHashes#c7025931: field location: %w", err)
tl_upload_get_file_hashes_gen.go#L173: return fmt.Errorf("unable to decode upload.getFileHashes#c7025931: field offset: %w", err)
tl_upload_get_web_file_gen.go#L126: return fmt.Errorf("can't encode upload.getWebFile#24e6818d as nil")
tl_upload_get_web_file_gen.go#L135: return fmt.Errorf("can't encode upload.getWebFile#24e6818d as nil")
tl_upload_get_web_file_gen.go#L138: return fmt.Errorf("unable to encode upload.getWebFile#24e6818d: field location is nil")
tl_upload_get_web_file_gen.go#L141: return fmt.Errorf("unable to encode upload.getWebFile#24e6818d: field location: %w", err)
tl_upload_get_web_file_gen.go#L166: return fmt.Errorf("can't decode upload.getWebFile#24e6818d to nil")
tl_upload_get_web_file_gen.go#L169: return fmt.Errorf("unable to decode upload.getWebFile#24e6818d: %w", err)
tl_upload_get_web_file_gen.go#L177: return fmt.Errorf("can't decode upload.getWebFile#24e6818d to nil")
tl_upload_get_web_file_gen.go#L182: return fmt.Errorf("unable to decode upload.getWebFile#24e6818d: field location: %w", err)
tl_upload_get_web_file_gen.go#L189: return fmt.Errorf("unable to decode upload.getWebFile#24e6818d: field offset: %w", err)
tl_upload_get_web_file_gen.go#L196: return fmt.Errorf("unable to decode upload.getWebFile#24e6818d: field limit: %w", err)
tl_upload_reupload_cdn_file_gen.go#L119: return fmt.Errorf("can't encode upload.reuploadCdnFile#9b2754a8 as nil")
tl_upload_reupload_cdn_file_gen.go#L128: return fmt.Errorf("can't encode upload.reuploadCdnFile#9b2754a8 as nil")
tl_upload_reupload_cdn_file_gen.go#L148: return fmt.Errorf("can't decode upload.reuploadCdnFile#9b2754a8 to nil")
tl_upload_reupload_cdn_file_gen.go#L151: return fmt.Errorf("unable to decode upload.reuploadCdnFile#9b2754a8: %w", err)
tl_upload_reupload_cdn_file_gen.go#L159: return fmt.Errorf("can't decode upload.reuploadCdnFile#9b2754a8 to nil")
tl_upload_reupload_cdn_file_gen.go#L164: return fmt.Errorf("unable to decode upload.reuploadCdnFile#9b2754a8: field file_token: %w", err)
tl_upload_reupload_cdn_file_gen.go#L171: return fmt.Errorf("unable to decode upload.reuploadCdnFile#9b2754a8: field request_token: %w", err)
tl_upload_save_big_file_part_gen.go#L139: return fmt.Errorf("can't encode upload.saveBigFilePart#de7b673d as nil")
tl_upload_save_big_file_part_gen.go#L148: return fmt.Errorf("can't encode upload.saveBigFilePart#de7b673d as nil")
tl_upload_save_big_file_part_gen.go#L180: return fmt.Errorf("can't decode upload.saveBigFilePart#de7b673d to nil")
tl_upload_save_big_file_part_gen.go#L183: return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: %w", err)
tl_upload_save_big_file_part_gen.go#L191: return fmt.Errorf("can't decode upload.saveBigFilePart#de7b673d to nil")
tl_upload_save_big_file_part_gen.go#L196: return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: field file_id: %w", err)
tl_upload_save_big_file_part_gen.go#L203: return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: field file_part: %w", err)
tl_upload_save_big_file_part_gen.go#L210: return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: field file_total_parts: %w", err)
tl_upload_save_big_file_part_gen.go#L217: return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: field bytes: %w", err)
tl_upload_save_file_part_gen.go#L127: return fmt.Errorf("can't encode upload.saveFilePart#b304a621 as nil")
tl_upload_save_file_part_gen.go#L136: return fmt.Errorf("can't encode upload.saveFilePart#b304a621 as nil")
tl_upload_save_file_part_gen.go#L162: return fmt.Errorf("can't decode upload.saveFilePart#b304a621 to nil")
tl_upload_save_file_part_gen.go#L165: return fmt.Errorf("unable to decode upload.saveFilePart#b304a621: %w", err)
tl_upload_save_file_part_gen.go#L173: return fmt.Errorf("can't decode upload.saveFilePart#b304a621 to nil")
tl_upload_save_file_part_gen.go#L178: return fmt.Errorf("unable to decode upload.saveFilePart#b304a621: field file_id: %w", err)
tl_upload_save_file_part_gen.go#L185: return fmt.Errorf("unable to decode upload.saveFilePart#b304a621: field file_part: %w", err)
tl_upload_save_file_part_gen.go#L192: return fmt.Errorf("unable to decode upload.saveFilePart#b304a621: field bytes: %w", err)
tl_upload_web_file_gen.go#L153: return fmt.Errorf("can't encode upload.webFile#21e753bc as nil")
tl_upload_web_file_gen.go#L162: return fmt.Errorf("can't encode upload.webFile#21e753bc as nil")
tl_upload_web_file_gen.go#L167: return fmt.Errorf("unable to encode upload.webFile#21e753bc: field file_type is nil")
tl_upload_web_file_gen.go#L170: return fmt.Errorf("unable to encode upload.webFile#21e753bc: field file_type: %w", err)
tl_upload_web_file_gen.go#L205: return fmt.Errorf("can't decode upload.webFile#21e753bc to nil")
tl_upload_web_file_gen.go#L208: return fmt.Errorf("unable to decode upload.webFile#21e753bc: %w", err)
tl_upload_web_file_gen.go#L216: return fmt.Errorf("can't decode upload.webFile#21e753bc to nil")
tl_upload_web_file_gen.go#L221: return fmt.Errorf("unable to decode upload.webFile#21e753bc: field size: %w", err)
tl_upload_web_file_gen.go#L228: return fmt.Errorf("unable to decode upload.webFile#21e753bc: field mime_type: %w", err)
tl_upload_web_file_gen.go#L235: return fmt.Errorf("unable to decode upload.webFile#21e753bc: field file_type: %w", err)
tl_upload_web_file_gen.go#L242: return fmt.Errorf("unable to decode upload.webFile#21e753bc: field mtime: %w", err)
tl_upload_web_file_gen.go#L249: return fmt.Errorf("unable to decode upload.webFile#21e753bc: field bytes: %w", err)
tl_url_auth_result_gen.go#L144: return fmt.Errorf("can't encode urlAuthResultRequest#92d33a0e as nil")
tl_url_auth_result_gen.go#L153: return fmt.Errorf("can't encode urlAuthResultRequest#92d33a0e as nil")
tl_url_auth_result_gen.go#L159: return fmt.Errorf("unable to encode urlAuthResultRequest#92d33a0e: field flags: %w", err)
tl_url_auth_result_gen.go#L162: return fmt.Errorf("unable to encode urlAuthResultRequest#92d33a0e: field bot is nil")
tl_url_auth_result_gen.go#L165: return fmt.Errorf("unable to encode urlAuthResultRequest#92d33a0e: field bot: %w", err)
tl_url_auth_result_gen.go#L200: return fmt.Errorf("can't decode urlAuthResultRequest#92d33a0e to nil")
tl_url_auth_result_gen.go#L203: return fmt.Errorf("unable to decode urlAuthResultRequest#92d33a0e: %w", err)
tl_url_auth_result_gen.go#L211: return fmt.Errorf("can't decode urlAuthResultRequest#92d33a0e to nil")
tl_url_auth_result_gen.go#L215: return fmt.Errorf("unable to decode urlAuthResultRequest#92d33a0e: field flags: %w", err)
tl_url_auth_result_gen.go#L222: return fmt.Errorf("unable to decode urlAuthResultRequest#92d33a0e: field bot: %w", err)
tl_url_auth_result_gen.go#L229: return fmt.Errorf("unable to decode urlAuthResultRequest#92d33a0e: field domain: %w", err)
tl_url_auth_result_gen.go#L325: return fmt.Errorf("can't encode urlAuthResultAccepted#8f8c0e4e as nil")
tl_url_auth_result_gen.go#L334: return fmt.Errorf("can't encode urlAuthResultAccepted#8f8c0e4e as nil")
tl_url_auth_result_gen.go#L348: return fmt.Errorf("can't decode urlAuthResultAccepted#8f8c0e4e to nil")
tl_url_auth_result_gen.go#L351: return fmt.Errorf("unable to decode urlAuthResultAccepted#8f8c0e4e: %w", err)
tl_url_auth_result_gen.go#L359: return fmt.Errorf("can't decode urlAuthResultAccepted#8f8c0e4e to nil")
tl_url_auth_result_gen.go#L364: return fmt.Errorf("unable to decode urlAuthResultAccepted#8f8c0e4e: field url: %w", err)
tl_url_auth_result_gen.go#L443: return fmt.Errorf("can't encode urlAuthResultDefault#a9d6db1f as nil")
tl_url_auth_result_gen.go#L452: return fmt.Errorf("can't encode urlAuthResultDefault#a9d6db1f as nil")
tl_url_auth_result_gen.go#L460: return fmt.Errorf("can't decode urlAuthResultDefault#a9d6db1f to nil")
tl_url_auth_result_gen.go#L463: return fmt.Errorf("unable to decode urlAuthResultDefault#a9d6db1f: %w", err)
tl_url_auth_result_gen.go#L471: return fmt.Errorf("can't decode urlAuthResultDefault#a9d6db1f to nil")
tl_url_auth_result_gen.go#L534: return nil, fmt.Errorf("unable to decode URLAuthResultClass: %w", err)
tl_url_auth_result_gen.go#L541: return nil, fmt.Errorf("unable to decode URLAuthResultClass: %w", err)
tl_url_auth_result_gen.go#L548: return nil, fmt.Errorf("unable to decode URLAuthResultClass: %w", err)
tl_url_auth_result_gen.go#L552: return nil, fmt.Errorf("unable to decode URLAuthResultClass: %w", bin.NewUnexpectedID(id))
tl_url_auth_result_gen.go#L564: return fmt.Errorf("unable to decode URLAuthResultBox to nil")
tl_url_auth_result_gen.go#L568: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_url_auth_result_gen.go#L577: return fmt.Errorf("unable to encode URLAuthResultClass as nil")
tl_user_class_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_user_class_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_user_class_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d is nil", idx)
tl_user_class_vector_gen.go#L119: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_user_class_vector_gen.go#L138: return fmt.Errorf("can't decode Vector to nil")
tl_user_class_vector_gen.go#L147: return fmt.Errorf("can't decode Vector to nil")
tl_user_class_vector_gen.go#L152: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_user_class_vector_gen.go#L157: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_user_full_gen.go#L330: return fmt.Errorf("can't encode userFull#139a9a77 as nil")
tl_user_full_gen.go#L339: return fmt.Errorf("can't encode userFull#139a9a77 as nil")
tl_user_full_gen.go#L378: return fmt.Errorf("unable to encode userFull#139a9a77: field flags: %w", err)
tl_user_full_gen.go#L381: return fmt.Errorf("unable to encode userFull#139a9a77: field user is nil")
tl_user_full_gen.go#L384: return fmt.Errorf("unable to encode userFull#139a9a77: field user: %w", err)
tl_user_full_gen.go#L390: return fmt.Errorf("unable to encode userFull#139a9a77: field settings: %w", err)
tl_user_full_gen.go#L394: return fmt.Errorf("unable to encode userFull#139a9a77: field profile_photo is nil")
tl_user_full_gen.go#L397: return fmt.Errorf("unable to encode userFull#139a9a77: field profile_photo: %w", err)
tl_user_full_gen.go#L401: return fmt.Errorf("unable to encode userFull#139a9a77: field notify_settings: %w", err)
tl_user_full_gen.go#L405: return fmt.Errorf("unable to encode userFull#139a9a77: field bot_info: %w", err)
tl_user_full_gen.go#L644: return fmt.Errorf("can't decode userFull#139a9a77 to nil")
tl_user_full_gen.go#L647: return fmt.Errorf("unable to decode userFull#139a9a77: %w", err)
tl_user_full_gen.go#L655: return fmt.Errorf("can't decode userFull#139a9a77 to nil")
tl_user_full_gen.go#L659: return fmt.Errorf("unable to decode userFull#139a9a77: field flags: %w", err)
tl_user_full_gen.go#L671: return fmt.Errorf("unable to decode userFull#139a9a77: field user: %w", err)
tl_user_full_gen.go#L678: return fmt.Errorf("unable to decode userFull#139a9a77: field about: %w", err)
tl_user_full_gen.go#L684: return fmt.Errorf("unable to decode userFull#139a9a77: field settings: %w", err)
tl_user_full_gen.go#L690: return fmt.Errorf("unable to decode userFull#139a9a77: field profile_photo: %w", err)
tl_user_full_gen.go#L696: return fmt.Errorf("unable to decode userFull#139a9a77: field notify_settings: %w", err)
tl_user_full_gen.go#L701: return fmt.Errorf("unable to decode userFull#139a9a77: field bot_info: %w", err)
tl_user_full_gen.go#L707: return fmt.Errorf("unable to decode userFull#139a9a77: field pinned_msg_id: %w", err)
tl_user_full_gen.go#L714: return fmt.Errorf("unable to decode userFull#139a9a77: field common_chats_count: %w", err)
tl_user_full_gen.go#L721: return fmt.Errorf("unable to decode userFull#139a9a77: field folder_id: %w", err)
tl_user_full_gen.go#L728: return fmt.Errorf("unable to decode userFull#139a9a77: field ttl_period: %w", err)
tl_user_gen.go#L105: return fmt.Errorf("can't encode userEmpty#200250ba as nil")
tl_user_gen.go#L114: return fmt.Errorf("can't encode userEmpty#200250ba as nil")
tl_user_gen.go#L128: return fmt.Errorf("can't decode userEmpty#200250ba to nil")
tl_user_gen.go#L131: return fmt.Errorf("unable to decode userEmpty#200250ba: %w", err)
tl_user_gen.go#L139: return fmt.Errorf("can't decode userEmpty#200250ba to nil")
tl_user_gen.go#L144: return fmt.Errorf("unable to decode userEmpty#200250ba: field id: %w", err)
tl_user_gen.go#L618: return fmt.Errorf("can't encode user#938458c1 as nil")
tl_user_gen.go#L627: return fmt.Errorf("can't encode user#938458c1 as nil")
tl_user_gen.go#L708: return fmt.Errorf("unable to encode user#938458c1: field flags: %w", err)
tl_user_gen.go#L728: return fmt.Errorf("unable to encode user#938458c1: field photo is nil")
tl_user_gen.go#L731: return fmt.Errorf("unable to encode user#938458c1: field photo: %w", err)
tl_user_gen.go#L736: return fmt.Errorf("unable to encode user#938458c1: field status is nil")
tl_user_gen.go#L739: return fmt.Errorf("unable to encode user#938458c1: field status: %w", err)
tl_user_gen.go#L749: return fmt.Errorf("unable to encode user#938458c1: field restriction_reason element with index %d: %w", idx, err)
tl_user_gen.go#L1175: return fmt.Errorf("can't decode user#938458c1 to nil")
tl_user_gen.go#L1178: return fmt.Errorf("unable to decode user#938458c1: %w", err)
tl_user_gen.go#L1186: return fmt.Errorf("can't decode user#938458c1 to nil")
tl_user_gen.go#L1190: return fmt.Errorf("unable to decode user#938458c1: field flags: %w", err)
tl_user_gen.go#L1211: return fmt.Errorf("unable to decode user#938458c1: field id: %w", err)
tl_user_gen.go#L1218: return fmt.Errorf("unable to decode user#938458c1: field access_hash: %w", err)
tl_user_gen.go#L1225: return fmt.Errorf("unable to decode user#938458c1: field first_name: %w", err)
tl_user_gen.go#L1232: return fmt.Errorf("unable to decode user#938458c1: field last_name: %w", err)
tl_user_gen.go#L1239: return fmt.Errorf("unable to decode user#938458c1: field username: %w", err)
tl_user_gen.go#L1246: return fmt.Errorf("unable to decode user#938458c1: field phone: %w", err)
tl_user_gen.go#L1253: return fmt.Errorf("unable to decode user#938458c1: field photo: %w", err)
tl_user_gen.go#L1260: return fmt.Errorf("unable to decode user#938458c1: field status: %w", err)
tl_user_gen.go#L1267: return fmt.Errorf("unable to decode user#938458c1: field bot_info_version: %w", err)
tl_user_gen.go#L1274: return fmt.Errorf("unable to decode user#938458c1: field restriction_reason: %w", err)
tl_user_gen.go#L1279: return fmt.Errorf("unable to decode user#938458c1: field restriction_reason: %w", err)
tl_user_gen.go#L1287: return fmt.Errorf("unable to decode user#938458c1: field bot_inline_placeholder: %w", err)
tl_user_gen.go#L1294: return fmt.Errorf("unable to decode user#938458c1: field lang_code: %w", err)
tl_user_gen.go#L1396: return nil, fmt.Errorf("unable to decode UserClass: %w", err)
tl_user_gen.go#L1403: return nil, fmt.Errorf("unable to decode UserClass: %w", err)
tl_user_gen.go#L1407: return nil, fmt.Errorf("unable to decode UserClass: %w", bin.NewUnexpectedID(id))
tl_user_gen.go#L1419: return fmt.Errorf("unable to decode UserBox to nil")
tl_user_gen.go#L1423: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_user_gen.go#L1432: return fmt.Errorf("unable to encode UserClass as nil")
tl_user_profile_photo_gen.go#L88: return fmt.Errorf("can't encode userProfilePhotoEmpty#4f11bae1 as nil")
tl_user_profile_photo_gen.go#L97: return fmt.Errorf("can't encode userProfilePhotoEmpty#4f11bae1 as nil")
tl_user_profile_photo_gen.go#L105: return fmt.Errorf("can't decode userProfilePhotoEmpty#4f11bae1 to nil")
tl_user_profile_photo_gen.go#L108: return fmt.Errorf("unable to decode userProfilePhotoEmpty#4f11bae1: %w", err)
tl_user_profile_photo_gen.go#L116: return fmt.Errorf("can't decode userProfilePhotoEmpty#4f11bae1 to nil")
tl_user_profile_photo_gen.go#L261: return fmt.Errorf("can't encode userProfilePhoto#82d1f706 as nil")
tl_user_profile_photo_gen.go#L270: return fmt.Errorf("can't encode userProfilePhoto#82d1f706 as nil")
tl_user_profile_photo_gen.go#L279: return fmt.Errorf("unable to encode userProfilePhoto#82d1f706: field flags: %w", err)
tl_user_profile_photo_gen.go#L333: return fmt.Errorf("can't decode userProfilePhoto#82d1f706 to nil")
tl_user_profile_photo_gen.go#L336: return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: %w", err)
tl_user_profile_photo_gen.go#L344: return fmt.Errorf("can't decode userProfilePhoto#82d1f706 to nil")
tl_user_profile_photo_gen.go#L348: return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: field flags: %w", err)
tl_user_profile_photo_gen.go#L355: return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: field photo_id: %w", err)
tl_user_profile_photo_gen.go#L362: return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: field stripped_thumb: %w", err)
tl_user_profile_photo_gen.go#L369: return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: field dc_id: %w", err)
tl_user_profile_photo_gen.go#L446: return nil, fmt.Errorf("unable to decode UserProfilePhotoClass: %w", err)
tl_user_profile_photo_gen.go#L453: return nil, fmt.Errorf("unable to decode UserProfilePhotoClass: %w", err)
tl_user_profile_photo_gen.go#L457: return nil, fmt.Errorf("unable to decode UserProfilePhotoClass: %w", bin.NewUnexpectedID(id))
tl_user_profile_photo_gen.go#L469: return fmt.Errorf("unable to decode UserProfilePhotoBox to nil")
tl_user_profile_photo_gen.go#L473: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_user_profile_photo_gen.go#L482: return fmt.Errorf("unable to encode UserProfilePhotoClass as nil")
tl_user_status_gen.go#L88: return fmt.Errorf("can't encode userStatusEmpty#9d05049 as nil")
tl_user_status_gen.go#L97: return fmt.Errorf("can't encode userStatusEmpty#9d05049 as nil")
tl_user_status_gen.go#L105: return fmt.Errorf("can't decode userStatusEmpty#9d05049 to nil")
tl_user_status_gen.go#L108: return fmt.Errorf("unable to decode userStatusEmpty#9d05049: %w", err)
tl_user_status_gen.go#L116: return fmt.Errorf("can't decode userStatusEmpty#9d05049 to nil")
tl_user_status_gen.go#L207: return fmt.Errorf("can't encode userStatusOnline#edb93949 as nil")
tl_user_status_gen.go#L216: return fmt.Errorf("can't encode userStatusOnline#edb93949 as nil")
tl_user_status_gen.go#L230: return fmt.Errorf("can't decode userStatusOnline#edb93949 to nil")
tl_user_status_gen.go#L233: return fmt.Errorf("unable to decode userStatusOnline#edb93949: %w", err)
tl_user_status_gen.go#L241: return fmt.Errorf("can't decode userStatusOnline#edb93949 to nil")
tl_user_status_gen.go#L246: return fmt.Errorf("unable to decode userStatusOnline#edb93949: field expires: %w", err)
tl_user_status_gen.go#L339: return fmt.Errorf("can't encode userStatusOffline#8c703f as nil")
tl_user_status_gen.go#L348: return fmt.Errorf("can't encode userStatusOffline#8c703f as nil")
tl_user_status_gen.go#L362: return fmt.Errorf("can't decode userStatusOffline#8c703f to nil")
tl_user_status_gen.go#L365: return fmt.Errorf("unable to decode userStatusOffline#8c703f: %w", err)
tl_user_status_gen.go#L373: return fmt.Errorf("can't decode userStatusOffline#8c703f to nil")
tl_user_status_gen.go#L378: return fmt.Errorf("unable to decode userStatusOffline#8c703f: field was_online: %w", err)
tl_user_status_gen.go#L454: return fmt.Errorf("can't encode userStatusRecently#e26f42f1 as nil")
tl_user_status_gen.go#L463: return fmt.Errorf("can't encode userStatusRecently#e26f42f1 as nil")
tl_user_status_gen.go#L471: return fmt.Errorf("can't decode userStatusRecently#e26f42f1 to nil")
tl_user_status_gen.go#L474: return fmt.Errorf("unable to decode userStatusRecently#e26f42f1: %w", err)
tl_user_status_gen.go#L482: return fmt.Errorf("can't decode userStatusRecently#e26f42f1 to nil")
tl_user_status_gen.go#L556: return fmt.Errorf("can't encode userStatusLastWeek#7bf09fc as nil")
tl_user_status_gen.go#L565: return fmt.Errorf("can't encode userStatusLastWeek#7bf09fc as nil")
tl_user_status_gen.go#L573: return fmt.Errorf("can't decode userStatusLastWeek#7bf09fc to nil")
tl_user_status_gen.go#L576: return fmt.Errorf("unable to decode userStatusLastWeek#7bf09fc: %w", err)
tl_user_status_gen.go#L584: return fmt.Errorf("can't decode userStatusLastWeek#7bf09fc to nil")
tl_user_status_gen.go#L658: return fmt.Errorf("can't encode userStatusLastMonth#77ebc742 as nil")
tl_user_status_gen.go#L667: return fmt.Errorf("can't encode userStatusLastMonth#77ebc742 as nil")
tl_user_status_gen.go#L675: return fmt.Errorf("can't decode userStatusLastMonth#77ebc742 to nil")
tl_user_status_gen.go#L678: return fmt.Errorf("unable to decode userStatusLastMonth#77ebc742: %w", err)
tl_user_status_gen.go#L686: return fmt.Errorf("can't decode userStatusLastMonth#77ebc742 to nil")
tl_user_status_gen.go#L752: return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
tl_user_status_gen.go#L759: return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
tl_user_status_gen.go#L766: return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
tl_user_status_gen.go#L773: return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
tl_user_status_gen.go#L780: return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
tl_user_status_gen.go#L787: return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
tl_user_status_gen.go#L791: return nil, fmt.Errorf("unable to decode UserStatusClass: %w", bin.NewUnexpectedID(id))
tl_user_status_gen.go#L803: return fmt.Errorf("unable to decode UserStatusBox to nil")
tl_user_status_gen.go#L807: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_user_status_gen.go#L816: return fmt.Errorf("unable to encode UserStatusClass as nil")
tl_users_get_full_user_gen.go#L105: return fmt.Errorf("can't encode users.getFullUser#ca30a5b1 as nil")
tl_users_get_full_user_gen.go#L114: return fmt.Errorf("can't encode users.getFullUser#ca30a5b1 as nil")
tl_users_get_full_user_gen.go#L117: return fmt.Errorf("unable to encode users.getFullUser#ca30a5b1: field id is nil")
tl_users_get_full_user_gen.go#L120: return fmt.Errorf("unable to encode users.getFullUser#ca30a5b1: field id: %w", err)
tl_users_get_full_user_gen.go#L133: return fmt.Errorf("can't decode users.getFullUser#ca30a5b1 to nil")
tl_users_get_full_user_gen.go#L136: return fmt.Errorf("unable to decode users.getFullUser#ca30a5b1: %w", err)
tl_users_get_full_user_gen.go#L144: return fmt.Errorf("can't decode users.getFullUser#ca30a5b1 to nil")
tl_users_get_full_user_gen.go#L149: return fmt.Errorf("unable to decode users.getFullUser#ca30a5b1: field id: %w", err)
tl_users_get_users_gen.go#L105: return fmt.Errorf("can't encode users.getUsers#d91a548 as nil")
tl_users_get_users_gen.go#L114: return fmt.Errorf("can't encode users.getUsers#d91a548 as nil")
tl_users_get_users_gen.go#L119: return fmt.Errorf("unable to encode users.getUsers#d91a548: field id element with index %d is nil", idx)
tl_users_get_users_gen.go#L122: return fmt.Errorf("unable to encode users.getUsers#d91a548: field id element with index %d: %w", idx, err)
tl_users_get_users_gen.go#L141: return fmt.Errorf("can't decode users.getUsers#d91a548 to nil")
tl_users_get_users_gen.go#L144: return fmt.Errorf("unable to decode users.getUsers#d91a548: %w", err)
tl_users_get_users_gen.go#L152: return fmt.Errorf("can't decode users.getUsers#d91a548 to nil")
tl_users_get_users_gen.go#L157: return fmt.Errorf("unable to decode users.getUsers#d91a548: field id: %w", err)
tl_users_get_users_gen.go#L162: return fmt.Errorf("unable to decode users.getUsers#d91a548: field id: %w", err)
tl_users_set_secure_value_errors_gen.go#L125: return fmt.Errorf("can't encode users.setSecureValueErrors#90c894b5 as nil")
tl_users_set_secure_value_errors_gen.go#L134: return fmt.Errorf("can't encode users.setSecureValueErrors#90c894b5 as nil")
tl_users_set_secure_value_errors_gen.go#L137: return fmt.Errorf("unable to encode users.setSecureValueErrors#90c894b5: field id is nil")
tl_users_set_secure_value_errors_gen.go#L140: return fmt.Errorf("unable to encode users.setSecureValueErrors#90c894b5: field id: %w", err)
tl_users_set_secure_value_errors_gen.go#L145: return fmt.Errorf("unable to encode users.setSecureValueErrors#90c894b5: field errors element with index %d is nil", idx)
tl_users_set_secure_value_errors_gen.go#L148: return fmt.Errorf("unable to encode users.setSecureValueErrors#90c894b5: field errors element with index %d: %w", idx, err)
tl_users_set_secure_value_errors_gen.go#L172: return fmt.Errorf("can't decode users.setSecureValueErrors#90c894b5 to nil")
tl_users_set_secure_value_errors_gen.go#L175: return fmt.Errorf("unable to decode users.setSecureValueErrors#90c894b5: %w", err)
tl_users_set_secure_value_errors_gen.go#L183: return fmt.Errorf("can't decode users.setSecureValueErrors#90c894b5 to nil")
tl_users_set_secure_value_errors_gen.go#L188: return fmt.Errorf("unable to decode users.setSecureValueErrors#90c894b5: field id: %w", err)
tl_users_set_secure_value_errors_gen.go#L195: return fmt.Errorf("unable to decode users.setSecureValueErrors#90c894b5: field errors: %w", err)
tl_users_set_secure_value_errors_gen.go#L200: return fmt.Errorf("unable to decode users.setSecureValueErrors#90c894b5: field errors: %w", err)
tl_video_size_gen.go#L166: return fmt.Errorf("can't encode videoSize#de33b094 as nil")
tl_video_size_gen.go#L175: return fmt.Errorf("can't encode videoSize#de33b094 as nil")
tl_video_size_gen.go#L181: return fmt.Errorf("unable to encode videoSize#de33b094: field flags: %w", err)
tl_video_size_gen.go#L231: return fmt.Errorf("can't decode videoSize#de33b094 to nil")
tl_video_size_gen.go#L234: return fmt.Errorf("unable to decode videoSize#de33b094: %w", err)
tl_video_size_gen.go#L242: return fmt.Errorf("can't decode videoSize#de33b094 to nil")
tl_video_size_gen.go#L246: return fmt.Errorf("unable to decode videoSize#de33b094: field flags: %w", err)
tl_video_size_gen.go#L252: return fmt.Errorf("unable to decode videoSize#de33b094: field type: %w", err)
tl_video_size_gen.go#L259: return fmt.Errorf("unable to decode videoSize#de33b094: field w: %w", err)
tl_video_size_gen.go#L266: return fmt.Errorf("unable to decode videoSize#de33b094: field h: %w", err)
tl_video_size_gen.go#L273: return fmt.Errorf("unable to decode videoSize#de33b094: field size: %w", err)
tl_video_size_gen.go#L280: return fmt.Errorf("unable to decode videoSize#de33b094: field video_start_ts: %w", err)
tl_wall_paper_class_vector_gen.go#L102: return fmt.Errorf("can't encode Vector as nil")
tl_wall_paper_class_vector_gen.go#L111: return fmt.Errorf("can't encode Vector as nil")
tl_wall_paper_class_vector_gen.go#L116: return fmt.Errorf("unable to encode Vector: field Elems element with index %d is nil", idx)
tl_wall_paper_class_vector_gen.go#L119: return fmt.Errorf("unable to encode Vector: field Elems element with index %d: %w", idx, err)
tl_wall_paper_class_vector_gen.go#L138: return fmt.Errorf("can't decode Vector to nil")
tl_wall_paper_class_vector_gen.go#L147: return fmt.Errorf("can't decode Vector to nil")
tl_wall_paper_class_vector_gen.go#L152: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_wall_paper_class_vector_gen.go#L157: return fmt.Errorf("unable to decode Vector: field Elems: %w", err)
tl_wall_paper_gen.go#L211: return fmt.Errorf("can't encode wallPaper#a437c3ed as nil")
tl_wall_paper_gen.go#L220: return fmt.Errorf("can't encode wallPaper#a437c3ed as nil")
tl_wall_paper_gen.go#L239: return fmt.Errorf("unable to encode wallPaper#a437c3ed: field flags: %w", err)
tl_wall_paper_gen.go#L244: return fmt.Errorf("unable to encode wallPaper#a437c3ed: field document is nil")
tl_wall_paper_gen.go#L247: return fmt.Errorf("unable to encode wallPaper#a437c3ed: field document: %w", err)
tl_wall_paper_gen.go#L251: return fmt.Errorf("unable to encode wallPaper#a437c3ed: field settings: %w", err)
tl_wall_paper_gen.go#L359: return fmt.Errorf("can't decode wallPaper#a437c3ed to nil")
tl_wall_paper_gen.go#L362: return fmt.Errorf("unable to decode wallPaper#a437c3ed: %w", err)
tl_wall_paper_gen.go#L370: return fmt.Errorf("can't decode wallPaper#a437c3ed to nil")
tl_wall_paper_gen.go#L375: return fmt.Errorf("unable to decode wallPaper#a437c3ed: field id: %w", err)
tl_wall_paper_gen.go#L381: return fmt.Errorf("unable to decode wallPaper#a437c3ed: field flags: %w", err)
tl_wall_paper_gen.go#L391: return fmt.Errorf("unable to decode wallPaper#a437c3ed: field access_hash: %w", err)
tl_wall_paper_gen.go#L398: return fmt.Errorf("unable to decode wallPaper#a437c3ed: field slug: %w", err)
tl_wall_paper_gen.go#L405: return fmt.Errorf("unable to decode wallPaper#a437c3ed: field document: %w", err)
tl_wall_paper_gen.go#L411: return fmt.Errorf("unable to decode wallPaper#a437c3ed: field settings: %w", err)
tl_wall_paper_gen.go#L541: return fmt.Errorf("can't encode wallPaperNoFile#8af40b25 as nil")
tl_wall_paper_gen.go#L550: return fmt.Errorf("can't encode wallPaperNoFile#8af40b25 as nil")
tl_wall_paper_gen.go#L562: return fmt.Errorf("unable to encode wallPaperNoFile#8af40b25: field flags: %w", err)
tl_wall_paper_gen.go#L566: return fmt.Errorf("unable to encode wallPaperNoFile#8af40b25: field settings: %w", err)
tl_wall_paper_gen.go#L622: return fmt.Errorf("can't decode wallPaperNoFile#8af40b25 to nil")
tl_wall_paper_gen.go#L625: return fmt.Errorf("unable to decode wallPaperNoFile#8af40b25: %w", err)
tl_wall_paper_gen.go#L633: return fmt.Errorf("can't decode wallPaperNoFile#8af40b25 to nil")
tl_wall_paper_gen.go#L637: return fmt.Errorf("unable to decode wallPaperNoFile#8af40b25: field flags: %w", err)
tl_wall_paper_gen.go#L644: return fmt.Errorf("unable to decode wallPaperNoFile#8af40b25: field settings: %w", err)
tl_wall_paper_gen.go#L733: return nil, fmt.Errorf("unable to decode WallPaperClass: %w", err)
tl_wall_paper_gen.go#L740: return nil, fmt.Errorf("unable to decode WallPaperClass: %w", err)
tl_wall_paper_gen.go#L744: return nil, fmt.Errorf("unable to decode WallPaperClass: %w", bin.NewUnexpectedID(id))
tl_wall_paper_gen.go#L756: return fmt.Errorf("unable to decode WallPaperBox to nil")
tl_wall_paper_gen.go#L760: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_wall_paper_gen.go#L769: return fmt.Errorf("unable to encode WallPaperClass as nil")
tl_wall_paper_settings_gen.go#L198: return fmt.Errorf("can't encode wallPaperSettings#5086cf8 as nil")
tl_wall_paper_settings_gen.go#L207: return fmt.Errorf("can't encode wallPaperSettings#5086cf8 as nil")
tl_wall_paper_settings_gen.go#L228: return fmt.Errorf("unable to encode wallPaperSettings#5086cf8: field flags: %w", err)
tl_wall_paper_settings_gen.go#L340: return fmt.Errorf("can't decode wallPaperSettings#5086cf8 to nil")
tl_wall_paper_settings_gen.go#L343: return fmt.Errorf("unable to decode wallPaperSettings#5086cf8: %w", err)
tl_wall_paper_settings_gen.go#L351: return fmt.Errorf("can't decode wallPaperSettings#5086cf8 to nil")
tl_wall_paper_settings_gen.go#L355: return fmt.Errorf("unable to decode wallPaperSettings#5086cf8: field flags: %w", err)
tl_wall_paper_settings_gen.go#L363: return fmt.Errorf("unable to decode wallPaperSettings#5086cf8: field background_color: %w", err)
tl_wall_paper_settings_gen.go#L370: return fmt.Errorf("unable to decode wallPaperSettings#5086cf8: field second_background_color: %w", err)
tl_wall_paper_settings_gen.go#L377: return fmt.Errorf("unable to decode wallPaperSettings#5086cf8: field intensity: %w", err)
tl_wall_paper_settings_gen.go#L384: return fmt.Errorf("unable to decode wallPaperSettings#5086cf8: field rotation: %w", err)
tl_web_authorization_gen.go#L196: return fmt.Errorf("can't encode webAuthorization#cac943f2 as nil")
tl_web_authorization_gen.go#L205: return fmt.Errorf("can't encode webAuthorization#cac943f2 as nil")
tl_web_authorization_gen.go#L267: return fmt.Errorf("can't decode webAuthorization#cac943f2 to nil")
tl_web_authorization_gen.go#L270: return fmt.Errorf("unable to decode webAuthorization#cac943f2: %w", err)
tl_web_authorization_gen.go#L278: return fmt.Errorf("can't decode webAuthorization#cac943f2 to nil")
tl_web_authorization_gen.go#L283: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field hash: %w", err)
tl_web_authorization_gen.go#L290: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field bot_id: %w", err)
tl_web_authorization_gen.go#L297: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field domain: %w", err)
tl_web_authorization_gen.go#L304: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field browser: %w", err)
tl_web_authorization_gen.go#L311: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field platform: %w", err)
tl_web_authorization_gen.go#L318: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field date_created: %w", err)
tl_web_authorization_gen.go#L325: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field date_active: %w", err)
tl_web_authorization_gen.go#L332: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field ip: %w", err)
tl_web_authorization_gen.go#L339: return fmt.Errorf("unable to decode webAuthorization#cac943f2: field region: %w", err)
tl_web_document_gen.go#L149: return fmt.Errorf("can't encode webDocument#1c570ed1 as nil")
tl_web_document_gen.go#L158: return fmt.Errorf("can't encode webDocument#1c570ed1 as nil")
tl_web_document_gen.go#L167: return fmt.Errorf("unable to encode webDocument#1c570ed1: field attributes element with index %d is nil", idx)
tl_web_document_gen.go#L170: return fmt.Errorf("unable to encode webDocument#1c570ed1: field attributes element with index %d: %w", idx, err)
tl_web_document_gen.go#L209: return fmt.Errorf("can't decode webDocument#1c570ed1 to nil")
tl_web_document_gen.go#L212: return fmt.Errorf("unable to decode webDocument#1c570ed1: %w", err)
tl_web_document_gen.go#L220: return fmt.Errorf("can't decode webDocument#1c570ed1 to nil")
tl_web_document_gen.go#L225: return fmt.Errorf("unable to decode webDocument#1c570ed1: field url: %w", err)
tl_web_document_gen.go#L232: return fmt.Errorf("unable to decode webDocument#1c570ed1: field access_hash: %w", err)
tl_web_document_gen.go#L239: return fmt.Errorf("unable to decode webDocument#1c570ed1: field size: %w", err)
tl_web_document_gen.go#L246: return fmt.Errorf("unable to decode webDocument#1c570ed1: field mime_type: %w", err)
tl_web_document_gen.go#L253: return fmt.Errorf("unable to decode webDocument#1c570ed1: field attributes: %w", err)
tl_web_document_gen.go#L258: return fmt.Errorf("unable to decode webDocument#1c570ed1: field attributes: %w", err)
tl_web_document_gen.go#L388: return fmt.Errorf("can't encode webDocumentNoProxy#f9c8bcc6 as nil")
tl_web_document_gen.go#L397: return fmt.Errorf("can't encode webDocumentNoProxy#f9c8bcc6 as nil")
tl_web_document_gen.go#L405: return fmt.Errorf("unable to encode webDocumentNoProxy#f9c8bcc6: field attributes element with index %d is nil", idx)
tl_web_document_gen.go#L408: return fmt.Errorf("unable to encode webDocumentNoProxy#f9c8bcc6: field attributes element with index %d: %w", idx, err)
tl_web_document_gen.go#L442: return fmt.Errorf("can't decode webDocumentNoProxy#f9c8bcc6 to nil")
tl_web_document_gen.go#L445: return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: %w", err)
tl_web_document_gen.go#L453: return fmt.Errorf("can't decode webDocumentNoProxy#f9c8bcc6 to nil")
tl_web_document_gen.go#L458: return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field url: %w", err)
tl_web_document_gen.go#L465: return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field size: %w", err)
tl_web_document_gen.go#L472: return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field mime_type: %w", err)
tl_web_document_gen.go#L479: return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field attributes: %w", err)
tl_web_document_gen.go#L484: return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field attributes: %w", err)
tl_web_document_gen.go#L574: return nil, fmt.Errorf("unable to decode WebDocumentClass: %w", err)
tl_web_document_gen.go#L581: return nil, fmt.Errorf("unable to decode WebDocumentClass: %w", err)
tl_web_document_gen.go#L585: return nil, fmt.Errorf("unable to decode WebDocumentClass: %w", bin.NewUnexpectedID(id))
tl_web_document_gen.go#L597: return fmt.Errorf("unable to decode WebDocumentBox to nil")
tl_web_document_gen.go#L601: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_web_document_gen.go#L610: return fmt.Errorf("unable to encode WebDocumentClass as nil")
tl_web_page_attribute_theme_gen.go#L136: return fmt.Errorf("can't encode webPageAttributeTheme#54b56617 as nil")
tl_web_page_attribute_theme_gen.go#L145: return fmt.Errorf("can't encode webPageAttributeTheme#54b56617 as nil")
tl_web_page_attribute_theme_gen.go#L154: return fmt.Errorf("unable to encode webPageAttributeTheme#54b56617: field flags: %w", err)
tl_web_page_attribute_theme_gen.go#L160: return fmt.Errorf("unable to encode webPageAttributeTheme#54b56617: field documents element with index %d is nil", idx)
tl_web_page_attribute_theme_gen.go#L163: return fmt.Errorf("unable to encode webPageAttributeTheme#54b56617: field documents element with index %d: %w", idx, err)
tl_web_page_attribute_theme_gen.go#L169: return fmt.Errorf("unable to encode webPageAttributeTheme#54b56617: field settings: %w", err)
tl_web_page_attribute_theme_gen.go#L216: return fmt.Errorf("can't decode webPageAttributeTheme#54b56617 to nil")
tl_web_page_attribute_theme_gen.go#L219: return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: %w", err)
tl_web_page_attribute_theme_gen.go#L227: return fmt.Errorf("can't decode webPageAttributeTheme#54b56617 to nil")
tl_web_page_attribute_theme_gen.go#L231: return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: field flags: %w", err)
tl_web_page_attribute_theme_gen.go#L237: return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: field documents: %w", err)
tl_web_page_attribute_theme_gen.go#L242: return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: field documents: %w", err)
tl_web_page_attribute_theme_gen.go#L249: return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: field settings: %w", err)
tl_web_page_gen.go#L105: return fmt.Errorf("can't encode webPageEmpty#eb1477e8 as nil")
tl_web_page_gen.go#L114: return fmt.Errorf("can't encode webPageEmpty#eb1477e8 as nil")
tl_web_page_gen.go#L128: return fmt.Errorf("can't decode webPageEmpty#eb1477e8 to nil")
tl_web_page_gen.go#L131: return fmt.Errorf("unable to decode webPageEmpty#eb1477e8: %w", err)
tl_web_page_gen.go#L139: return fmt.Errorf("can't decode webPageEmpty#eb1477e8 to nil")
tl_web_page_gen.go#L144: return fmt.Errorf("unable to decode webPageEmpty#eb1477e8: field id: %w", err)
tl_web_page_gen.go#L248: return fmt.Errorf("can't encode webPagePending#c586da1c as nil")
tl_web_page_gen.go#L257: return fmt.Errorf("can't encode webPagePending#c586da1c as nil")
tl_web_page_gen.go#L277: return fmt.Errorf("can't decode webPagePending#c586da1c to nil")
tl_web_page_gen.go#L280: return fmt.Errorf("unable to decode webPagePending#c586da1c: %w", err)
tl_web_page_gen.go#L288: return fmt.Errorf("can't decode webPagePending#c586da1c to nil")
tl_web_page_gen.go#L293: return fmt.Errorf("unable to decode webPagePending#c586da1c: field id: %w", err)
tl_web_page_gen.go#L300: return fmt.Errorf("unable to decode webPagePending#c586da1c: field date: %w", err)
tl_web_page_gen.go#L679: return fmt.Errorf("can't encode webPage#e89c45b2 as nil")
tl_web_page_gen.go#L688: return fmt.Errorf("can't encode webPage#e89c45b2 as nil")
tl_web_page_gen.go#L733: return fmt.Errorf("unable to encode webPage#e89c45b2: field flags: %w", err)
tl_web_page_gen.go#L753: return fmt.Errorf("unable to encode webPage#e89c45b2: field photo is nil")
tl_web_page_gen.go#L756: return fmt.Errorf("unable to encode webPage#e89c45b2: field photo: %w", err)
tl_web_page_gen.go#L779: return fmt.Errorf("unable to encode webPage#e89c45b2: field document is nil")
tl_web_page_gen.go#L782: return fmt.Errorf("unable to encode webPage#e89c45b2: field document: %w", err)
tl_web_page_gen.go#L787: return fmt.Errorf("unable to encode webPage#e89c45b2: field cached_page: %w", err)
tl_web_page_gen.go#L794: return fmt.Errorf("unable to encode webPage#e89c45b2: field attributes element with index %d: %w", idx, err)
tl_web_page_gen.go#L1034: return fmt.Errorf("can't decode webPage#e89c45b2 to nil")
tl_web_page_gen.go#L1037: return fmt.Errorf("unable to decode webPage#e89c45b2: %w", err)
tl_web_page_gen.go#L1045: return fmt.Errorf("can't decode webPage#e89c45b2 to nil")
tl_web_page_gen.go#L1049: return fmt.Errorf("unable to decode webPage#e89c45b2: field flags: %w", err)
tl_web_page_gen.go#L1055: return fmt.Errorf("unable to decode webPage#e89c45b2: field id: %w", err)
tl_web_page_gen.go#L1062: return fmt.Errorf("unable to decode webPage#e89c45b2: field url: %w", err)
tl_web_page_gen.go#L1069: return fmt.Errorf("unable to decode webPage#e89c45b2: field display_url: %w", err)
tl_web_page_gen.go#L1076: return fmt.Errorf("unable to decode webPage#e89c45b2: field hash: %w", err)
tl_web_page_gen.go#L1083: return fmt.Errorf("unable to decode webPage#e89c45b2: field type: %w", err)
tl_web_page_gen.go#L1090: return fmt.Errorf("unable to decode webPage#e89c45b2: field site_name: %w", err)
tl_web_page_gen.go#L1097: return fmt.Errorf("unable to decode webPage#e89c45b2: field title: %w", err)
tl_web_page_gen.go#L1104: return fmt.Errorf("unable to decode webPage#e89c45b2: field description: %w", err)
tl_web_page_gen.go#L1111: return fmt.Errorf("unable to decode webPage#e89c45b2: field photo: %w", err)
tl_web_page_gen.go#L1118: return fmt.Errorf("unable to decode webPage#e89c45b2: field embed_url: %w", err)
tl_web_page_gen.go#L1125: return fmt.Errorf("unable to decode webPage#e89c45b2: field embed_type: %w", err)
tl_web_page_gen.go#L1132: return fmt.Errorf("unable to decode webPage#e89c45b2: field embed_width: %w", err)
tl_web_page_gen.go#L1139: return fmt.Errorf("unable to decode webPage#e89c45b2: field embed_height: %w", err)
tl_web_page_gen.go#L1146: return fmt.Errorf("unable to decode webPage#e89c45b2: field duration: %w", err)
tl_web_page_gen.go#L1153: return fmt.Errorf("unable to decode webPage#e89c45b2: field author: %w", err)
tl_web_page_gen.go#L1160: return fmt.Errorf("unable to decode webPage#e89c45b2: field document: %w", err)
tl_web_page_gen.go#L1166: return fmt.Errorf("unable to decode webPage#e89c45b2: field cached_page: %w", err)
tl_web_page_gen.go#L1172: return fmt.Errorf("unable to decode webPage#e89c45b2: field attributes: %w", err)
tl_web_page_gen.go#L1177: return fmt.Errorf("unable to decode webPage#e89c45b2: field attributes: %w", err)
tl_web_page_gen.go#L1285: return fmt.Errorf("can't encode webPageNotModified#7311ca11 as nil")
tl_web_page_gen.go#L1294: return fmt.Errorf("can't encode webPageNotModified#7311ca11 as nil")
tl_web_page_gen.go#L1300: return fmt.Errorf("unable to encode webPageNotModified#7311ca11: field flags: %w", err)
tl_web_page_gen.go#L1326: return fmt.Errorf("can't decode webPageNotModified#7311ca11 to nil")
tl_web_page_gen.go#L1329: return fmt.Errorf("unable to decode webPageNotModified#7311ca11: %w", err)
tl_web_page_gen.go#L1337: return fmt.Errorf("can't decode webPageNotModified#7311ca11 to nil")
tl_web_page_gen.go#L1341: return fmt.Errorf("unable to decode webPageNotModified#7311ca11: field flags: %w", err)
tl_web_page_gen.go#L1347: return fmt.Errorf("unable to decode webPageNotModified#7311ca11: field cached_page_views: %w", err)
tl_web_page_gen.go#L1463: return nil, fmt.Errorf("unable to decode WebPageClass: %w", err)
tl_web_page_gen.go#L1470: return nil, fmt.Errorf("unable to decode WebPageClass: %w", err)
tl_web_page_gen.go#L1477: return nil, fmt.Errorf("unable to decode WebPageClass: %w", err)
tl_web_page_gen.go#L1484: return nil, fmt.Errorf("unable to decode WebPageClass: %w", err)
tl_web_page_gen.go#L1488: return nil, fmt.Errorf("unable to decode WebPageClass: %w", bin.NewUnexpectedID(id))
tl_web_page_gen.go#L1500: return fmt.Errorf("unable to decode WebPageBox to nil")
tl_web_page_gen.go#L1504: return fmt.Errorf("unable to decode boxed value: %w", err)
tl_web_page_gen.go#L1513: return fmt.Errorf("unable to encode WebPageClass as nil")
github.com/klauspost/compress/flate
deflate.go#L667: return fmt.Errorf("flate: invalid compression level %d: want value in range [-2, 9]", level)
token.go#L267: panic(fmt.Errorf("invalid length: %v", xlength))
token.go#L270: panic(fmt.Errorf("invalid offset: %v", xoffset))
token.go#L286: panic(fmt.Errorf("invalid offset: %v", xoffset))
go.uber.org/zap
config.go#L185: return nil, fmt.Errorf("missing Level")
encoder.go#L58: return fmt.Errorf("encoder already registered for name %q", name)
encoder.go#L66: return nil, fmt.Errorf("missing EncodeTime in EncoderConfig")
encoder.go#L76: return nil, fmt.Errorf("no encoder registered for name %q", name)
global.go#L157: return nil, fmt.Errorf("unrecognized level: %q", lvl)
http_handler.go#L111: return 0, fmt.Errorf("must specify logging level")
http_handler.go#L125: return 0, fmt.Errorf("malformed request body: %v", err)
http_handler.go#L128: return 0, fmt.Errorf("must specify logging level")
sink.go#L89: return fmt.Errorf("%q is not a valid scheme: %v", scheme, err)
sink.go#L92: return fmt.Errorf("sink factory already registered for scheme %q", normalized)
sink.go#L101: return nil, fmt.Errorf("can't parse %q as a URL: %v", rawURL, err)
sink.go#L118: return nil, fmt.Errorf("user and password not allowed with file URLs: got %v", u)
sink.go#L121: return nil, fmt.Errorf("fragments not allowed with file URLs: got %v", u)
sink.go#L124: return nil, fmt.Errorf("query parameters not allowed with file URLs: got %v", u)
sink.go#L128: return nil, fmt.Errorf("ports not allowed with file URLs: got %v", u)
sink.go#L131: return nil, fmt.Errorf("file URLs must leave host empty or use localhost: got %v", u)
sink.go#L158: return "", fmt.Errorf("may not contain %q", c)
writer.go#L74: openErr = multierr.Append(openErr, fmt.Errorf("couldn't open sink %q: %v", path, err))
go.uber.org/zap/zapcore
error.go#L59: retErr = fmt.Errorf("PANIC=%v", rerr)
field.go#L227: retErr = fmt.Errorf("PANIC=%v", err)
increase_level.go#L37: return nil, fmt.Errorf("invalid increase level, as level %q is allowed by increased level, but not by existing core", l)
level.go#L121: return fmt.Errorf("unrecognized level: %q", text)
math/big
floatconv.go#L129: err = fmt.Errorf("exponent overflow")
floatconv.go#L279: err = fmt.Errorf("expected end of string, found %q", ch)
floatmarsh.go#L72: return fmt.Errorf("Float.GobDecode: encoding version %d not supported", buf[0])
floatmarsh.go#L117: err = fmt.Errorf("math/big: cannot unmarshal %q into a *big.Float (%v)", text, err)
intconv.go#L224: err = fmt.Errorf("invalid rune %#U", ch)
intmarsh.go#L41: return fmt.Errorf("Int.GobDecode: encoding version %d not supported", b>>1)
intmarsh.go#L59: return fmt.Errorf("math/big: cannot unmarshal %q into a *big.Int", text)
ratmarsh.go#L50: return fmt.Errorf("Rat.GobDecode: encoding version %d not supported", b>>1)
ratmarsh.go#L72: return fmt.Errorf("math/big: cannot unmarshal %q into a *big.Rat", text)
mime
encodedword.go#L343: return fmt.Errorf("mime: unhandled charset %q", charset)
encodedword.go#L423: return 0, fmt.Errorf("mime: invalid hex byte %#02x", b)
mediatype.go#L368: return "", fmt.Errorf("mime: bogus characters after %%: %q", s)
type.go#L169: return fmt.Errorf("mime: extension %q missing leading dot", ext)
mime/multipart
multipart.go#L331: return nil, fmt.Errorf("multipart: boundary is empty")
multipart.go#L346: return nil, fmt.Errorf("multipart: NextPart: %v", err)
multipart.go#L365: return nil, fmt.Errorf("multipart: expecting a new Part; got line %q", string(line))
multipart.go#L382: return nil, fmt.Errorf("multipart: unexpected line in Next(): %q", line)
mime/quotedprintable
reader.go#L40: return 0, fmt.Errorf("quotedprintable: invalid hex byte 0x%02x", b)
reader.go#L99: r.rerr = fmt.Errorf("quotedprintable: invalid bytes after =: %q", rightStripped)
reader.go#L131: return n, fmt.Errorf("quotedprintable: invalid unescaped byte 0x%02x in body", b)
net/http
client.go#L269: return nil, didTimeout, fmt.Errorf("http: RoundTripper implementation (%T) returned a nil *Response with a nil error", rt)
client.go#L283: return nil, didTimeout, fmt.Errorf("http: RoundTripper implementation (%T) returned a *Response with content length %d but a nil Body", rt, resp.ContentLength)
client.go#L645: return nil, uerr(fmt.Errorf("%d response missing Location header", resp.StatusCode))
client.go#L650: return nil, uerr(fmt.Errorf("failed to parse Location header %q: %v", loc, err))
h2_bundle.go#L3918: return fmt.Errorf("http2: TLSConfig.CipherSuites is missing an HTTP/2-required AES_128_GCM_SHA256 cipher (need at least one of TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 or TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)")
h2_bundle.go#L4649: errc <- fmt.Errorf("bogus greeting %q", buf)
h2_bundle.go#L5378: st.body.CloseWithError(fmt.Errorf("sender tried to send more than declared Content-Length of %d bytes", st.declBodyBytes))
h2_bundle.go#L5442: st.body.CloseWithError(fmt.Errorf("request declared a Content-Length of %d but only wrote %d bytes",
h2_bundle.go#L6453: return fmt.Errorf("target must be an absolute URL or an absolute path: %q", target)
h2_bundle.go#L6459: return fmt.Errorf("cannot push URL with scheme %q from request with scheme %q", u.Scheme, wantScheme)
h2_bundle.go#L6467: return fmt.Errorf("promised request headers cannot include pseudo header %q", k)
h2_bundle.go#L6479: return fmt.Errorf("promised request headers cannot include %q", k)
h2_bundle.go#L6490: return fmt.Errorf("method %q must be GET or HEAD", opts.Method)
h2_bundle.go#L6641: return fmt.Errorf("request header %q is not valid in HTTP/2", k)
h2_bundle.go#L7179: return nil, fmt.Errorf("http2: Transport: cannot retry err [%v] after Request.Body was written; define Request.GetBody to avoid this error", err)
h2_bundle.go#L7233: return nil, fmt.Errorf("http2: unexpected ALPN protocol %q; want %q", p, http2NextProtoTLS)
h2_bundle.go#L7578: return "", fmt.Errorf("invalid Trailer key %q", k)
h2_bundle.go#L7605: return fmt.Errorf("http2: invalid Upgrade request header: %q", req.Header["Upgrade"])
h2_bundle.go#L7608: return fmt.Errorf("http2: invalid Transfer-Encoding request header: %q", vv)
h2_bundle.go#L7611: return fmt.Errorf("http2: invalid Connection request header: %q", vv)
h2_bundle.go#L8268: return nil, fmt.Errorf("invalid request :path %q from URL.Opaque = %q", orig, req.URL.Opaque)
h2_bundle.go#L8270: return nil, fmt.Errorf("invalid request :path %q", orig)
h2_bundle.go#L8281: return nil, fmt.Errorf("invalid HTTP header name %q", k)
h2_bundle.go#L8285: return nil, fmt.Errorf("invalid HTTP header value %q for header %q", v, k)
h2_bundle.go#L9439: err = fmt.Errorf("%v", e)
request.go#L86: func badStringError(what, val string) error { return fmt.Errorf("%s %q", what, val) }
request.go#L863: return nil, fmt.Errorf("net/http: invalid method %q", method)
request.go#L1082: return nil, fmt.Errorf("too many Host headers")
server.go#L324: return nil, nil, fmt.Errorf("unexpected Peek failure reading buffered byte: %v", err)
transfer.go#L84: return nil, fmt.Errorf("http: Request.ContentLength=%d with nil Body", rr.ContentLength)
transfer.go#L388: return fmt.Errorf("http: ContentLength=%d with Body length %d",
transfer.go#L679: return 0, fmt.Errorf("http: message cannot contain multiple Content-Length headers; got %q", contentLens)
transfer.go#L697: return 0, fmt.Errorf("http: method cannot contain a Content-Length; got %q", contentLens)
transport.go#L523: return nil, fmt.Errorf("net/http: invalid header field name %q", k)
transport.go#L528: return nil, fmt.Errorf("net/http: invalid header field value %q for key %v", v, k)
transport.go#L554: return nil, fmt.Errorf("net/http: invalid method %q", req.Method)
transport.go#L1921: return 0, fmt.Errorf("read limit of %d bytes exhausted", pc.maxHeaderResponseSize())
transport.go#L2042: return fmt.Errorf("net/http: HTTP/1.x transport connection broken: %v", err)
transport.go#L2110: err = fmt.Errorf("net/http: server response headers exceeded %d bytes; aborted", pc.maxHeaderResponseSize())
transport.go#L2249: pc.closeLocked(fmt.Errorf("readLoopPeekFailLocked: %v", peekErr))
transport.go#L2620: pc.close(fmt.Errorf("write error: %v", err))
net/textproto
reader.go#L129: return nil, fmt.Errorf("missing validateFirstLine func")
net/url
url.go#L629: return "", fmt.Errorf("invalid port %q after host", colonPort)
url.go#L657: return "", fmt.Errorf("invalid port %q after host", colonPort)
url.go#L943: err = fmt.Errorf("invalid semicolon separator in query")
nhooyr.io/websocket
accept.go#L136: err = fmt.Errorf("failed to hijack connection: %w", err)
accept.go#L159: return http.StatusUpgradeRequired, fmt.Errorf("WebSocket protocol violation: handshake request must be at least HTTP/1.1: %q", r.Proto)
accept.go#L165: return http.StatusUpgradeRequired, fmt.Errorf("WebSocket protocol violation: Connection header %q does not contain Upgrade", r.Header.Get("Connection"))
accept.go#L171: return http.StatusUpgradeRequired, fmt.Errorf("WebSocket protocol violation: Upgrade header %q does not contain websocket", r.Header.Get("Upgrade"))
accept.go#L175: return http.StatusMethodNotAllowed, fmt.Errorf("WebSocket protocol violation: handshake request method is not GET but %q", r.Method)
accept.go#L180: return http.StatusBadRequest, fmt.Errorf("unsupported WebSocket protocol version (only 13 is supported): %q", r.Header.Get("Sec-WebSocket-Version"))
accept.go#L198: return fmt.Errorf("failed to parse Origin header %q: %w", origin, err)
accept.go#L208: return fmt.Errorf("failed to parse filepath pattern %q: %w", hostPattern, err)
accept.go#L214: return fmt.Errorf("request Origin %q is not authorized for Host %q", origin, r.Host)
accept.go#L268: err := fmt.Errorf("unsupported permessage-deflate parameter: %q", p)
accept.go#L298: err := fmt.Errorf("unsupported x-webkit-deflate-frame parameter: %q", p)
close_notjs.go#L83: c.setCloseErr(fmt.Errorf("sent close frame: %w", ce))
close_notjs.go#L130: return CloseError{}, fmt.Errorf("close payload %q too small, cannot even contain the 2 byte status code", p)
close_notjs.go#L139: return CloseError{}, fmt.Errorf("invalid status code %v", ce.Code)
close_notjs.go#L166: err = fmt.Errorf("failed to marshal close frame: %w", err)
close_notjs.go#L179: return nil, fmt.Errorf("reason string max is %v but got %q with length %v", maxCloseReason, ce.Reason, len(ce.Reason))
close_notjs.go#L183: return nil, fmt.Errorf("status code %v cannot be set", ce.Code)
close_notjs.go#L200: c.closeErr = fmt.Errorf("WebSocket closed: %w", err)
conn_notjs.go#L161: c.setCloseErr(fmt.Errorf("read timed out: %w", readCtx.Err()))
conn_notjs.go#L164: c.close(fmt.Errorf("write timed out: %w", writeCtx.Err()))
conn_notjs.go#L186: return fmt.Errorf("failed to ping: %w", err)
conn_notjs.go#L213: err := fmt.Errorf("failed to wait for pong: %w", ctx.Err())
conn_notjs.go#L242: err := fmt.Errorf("failed to acquire lock: %w", ctx.Err())
dial.go#L93: return nil, nil, fmt.Errorf("failed to generate Sec-WebSocket-Key: %w", err)
dial.go#L130: return nil, resp, fmt.Errorf("response body is not a io.ReadWriteCloser: %T", respBody)
dial.go#L147: return nil, fmt.Errorf("failed to parse url: %w", err)
dial.go#L157: return nil, fmt.Errorf("unexpected url scheme: %q", u.Scheme)
dial.go#L175: return nil, fmt.Errorf("failed to send handshake request: %w", err)
dial.go#L187: return "", fmt.Errorf("failed to read random data from rand.Reader: %w", err)
dial.go#L194: return nil, fmt.Errorf("expected handshake response status code %v but got %v", http.StatusSwitchingProtocols, resp.StatusCode)
dial.go#L198: return nil, fmt.Errorf("WebSocket protocol violation: Connection header %q does not contain Upgrade", resp.Header.Get("Connection"))
dial.go#L202: return nil, fmt.Errorf("WebSocket protocol violation: Upgrade header %q does not contain websocket", resp.Header.Get("Upgrade"))
dial.go#L206: return nil, fmt.Errorf("WebSocket protocol violation: invalid Sec-WebSocket-Accept %q, key %q",
dial.go#L232: return fmt.Errorf("WebSocket protocol violation: unexpected Sec-WebSocket-Protocol from server: %q", proto)
dial.go#L243: return nil, fmt.Errorf("WebSocket protcol violation: unsupported extensions from server: %+v", exts[1:])
dial.go#L258: return nil, fmt.Errorf("unsupported permessage-deflate parameter: %q", p)
frame.go#L89: return header{}, fmt.Errorf("received negative payload length: %v", h.payloadLength)
netconn.go#L110: err := fmt.Errorf("unexpected frame type read (expected %v): %v", c.msgType, typ)
read.go#L152: err := fmt.Errorf("received header with unexpected rsv bits set: %v:%v:%v", h.rsv1, h.rsv2, h.rsv3)
read.go#L169: return header{}, fmt.Errorf("failed to handle control frame %v: %w", h.opcode, err)
read.go#L174: err := fmt.Errorf("received unknown opcode %v", h.opcode)
read.go#L225: err = fmt.Errorf("failed to read frame payload: %w", err)
read.go#L242: err := fmt.Errorf("received control frame payload with invalid length: %d", h.payloadLength)
read.go#L288: err = fmt.Errorf("received invalid close payload: %w", err)
read.go#L293: err = fmt.Errorf("received close frame: %w", ce)
read.go#L311: c.close(fmt.Errorf("failed to get reader: %w", err))
read.go#L371: return 0, fmt.Errorf("failed to read: %w", err)
read.go#L385: err = fmt.Errorf("failed to read: %w", err)
read.go#L457: err := fmt.Errorf("read limited at %v bytes", lr.limit.Load())
write.go#L30: return nil, fmt.Errorf("failed to get writer: %w", err)
write.go#L44: return fmt.Errorf("failed to write msg: %w", err)
write.go#L160: return 0, fmt.Errorf("failed to write: %w", err)
write.go#L166: err = fmt.Errorf("failed to write: %w", err)
write.go#L194: return n, fmt.Errorf("failed to write data frame: %w", err)
write.go#L212: return fmt.Errorf("failed to write fin frame: %w", err)
write.go#L238: return fmt.Errorf("failed to write control frame %v: %w", opcode, err)
write.go#L283: err = fmt.Errorf("failed to write frame: %w", err)
write.go#L295: return 0, fmt.Errorf("failed to generate masking key: %w", err)
write.go#L318: return n, fmt.Errorf("failed to flush: %w", err)
nhooyr.io/websocket/internal/errd
wrap.go#L12: *err = fmt.Errorf(f+": %w", append(v, *err)...)
nhooyr.io/websocket/internal/xsync
go.go#L16: case errs <- fmt.Errorf("panic in go fn: %v", r):
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L112: b.err = fmt.Errorf("cryptobyte: cannot represent %v as a GeneralizedTime", t)
asn1.go#L126: b.err = fmt.Errorf("cryptobyte: cannot represent %v as a UTCTime", t)
asn1.go#L184: b.err = fmt.Errorf("cryptobyte: invalid OID: %v", oid)
asn1.go#L237: b.err = fmt.Errorf("cryptobyte: high-tag number identifier octects not supported: 0x%x", tag)
builder.go#L273: b.err = fmt.Errorf("cryptobyte: pending child length %d exceeds %d-byte length prefix", length, child.pendingLenLen)
vendor/golang.org/x/crypto/curve25519
curve25519.go#L77: return nil, fmt.Errorf("bad scalar length: %d, expected %d", l, 32)
curve25519.go#L80: return nil, fmt.Errorf("bad point length: %d, expected %d", l, 32)
curve25519.go#L91: return nil, fmt.Errorf("bad input point: low order point")
vendor/golang.org/x/net/http/httpproxy
proxy.go#L165: return nil, fmt.Errorf("invalid proxy address %q: %v", proxy, err)
vendor/golang.org/x/text/unicode/bidi
core.go#L1016: return fmt.Errorf("types is null")
core.go#L1020: return fmt.Errorf("B type before end of paragraph at index: %d", i)
core.go#L1030: return fmt.Errorf("illegal paragraph embedding level: %d", embeddingLevel)
core.go#L1039: return fmt.Errorf("bad linebreak: %d at index: %d", next, i)
core.go#L1044: return fmt.Errorf("last linebreak was %d, want %d", prev, textLength)
core.go#L1051: return fmt.Errorf("pairTypes is null")
core.go#L1057: return fmt.Errorf("illegal pairType value at %d: %v", i, pairTypes[i])
core.go#L1065: return fmt.Errorf("pairValues is null")
core.go#L1068: return fmt.Errorf("pairTypes is different length from pairValues")
vendor/golang.org/x/text/unicode/norm
iter.go#L76: return 0, fmt.Errorf("norm: invalid whence")
iter.go#L79: return 0, fmt.Errorf("norm: negative position")
 |
The pages are generated with Golds v0.3.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |